@orbcharts/plugins-basic 3.0.0-alpha.49 → 3.0.0-alpha.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +6325 -6272
- package/dist/orbcharts-plugins-basic.umd.js +8 -8
- package/dist/src/base/BaseGroupAxis.d.ts +1 -0
- package/dist/src/grid/index.d.ts +1 -1
- package/dist/src/grid/plugins/BarsPN.d.ts +1 -0
- package/dist/src/grid/types.d.ts +3 -2
- package/dist/src/multiGrid/defaults.d.ts +2 -1
- package/dist/src/multiGrid/index.d.ts +2 -0
- package/dist/src/multiGrid/multiGridObservables.d.ts +1 -1
- package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +1 -0
- package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +1 -0
- package/dist/src/multiGrid/types.d.ts +3 -0
- package/dist/src/series/types.d.ts +2 -3
- package/package.json +42 -42
- package/src/base/BaseBarStack.ts +778 -778
- package/src/base/BaseBars.ts +764 -764
- package/src/base/BaseBarsTriangle.ts +672 -672
- package/src/base/BaseDots.ts +513 -502
- package/src/base/BaseGroupAxis.ts +562 -496
- package/src/base/BaseLegend.ts +641 -641
- package/src/base/BaseLineAreas.ts +625 -625
- package/src/base/BaseLines.ts +699 -699
- package/src/base/BaseValueAxis.ts +478 -478
- package/src/base/types.ts +2 -2
- package/src/grid/defaults.ts +125 -121
- package/src/grid/gridObservables.ts +248 -247
- package/src/grid/index.ts +15 -15
- package/src/grid/plugins/BarStack.ts +43 -50
- package/src/grid/plugins/Bars.ts +44 -51
- package/src/grid/plugins/{BarsDiverging.ts → BarsPN.ts} +41 -41
- package/src/grid/plugins/BarsTriangle.ts +42 -50
- package/src/grid/plugins/Dots.ts +37 -37
- package/src/grid/plugins/GridLegend.ts +59 -59
- package/src/grid/plugins/GroupAux.ts +645 -645
- package/src/grid/plugins/GroupAxis.ts +35 -42
- package/src/grid/plugins/LineAreas.ts +39 -39
- package/src/grid/plugins/Lines.ts +38 -38
- package/src/grid/plugins/ScalingArea.ts +173 -173
- package/src/grid/plugins/ValueAxis.ts +36 -43
- package/src/grid/plugins/ValueStackAxis.ts +38 -79
- package/src/grid/types.ts +122 -120
- package/src/index.ts +9 -9
- package/src/multiGrid/defaults.ts +152 -147
- package/src/multiGrid/index.ts +14 -12
- package/src/multiGrid/multiGridObservables.ts +44 -43
- package/src/multiGrid/plugins/MultiBarStack.ts +78 -78
- package/src/multiGrid/plugins/MultiBars.ts +77 -77
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +77 -77
- package/src/multiGrid/plugins/MultiDots.ts +65 -65
- package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
- package/src/multiGrid/plugins/MultiGroupAxis.ts +69 -69
- package/src/multiGrid/plugins/MultiLineAreas.ts +67 -67
- package/src/multiGrid/plugins/MultiLines.ts +66 -66
- package/src/multiGrid/plugins/MultiValueAxis.ts +69 -69
- package/src/multiGrid/plugins/MultiValueStackAxis.ts +69 -0
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +166 -173
- package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +167 -0
- package/src/multiGrid/types.ts +71 -67
- package/src/noneData/defaults.ts +64 -64
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +10 -10
- package/src/noneData/plugins/Tooltip.ts +310 -310
- package/src/noneData/types.ts +26 -26
- package/src/series/defaults.ts +126 -126
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +545 -602
- package/src/series/plugins/Pie.ts +576 -576
- package/src/series/plugins/PieEventTexts.ts +262 -262
- package/src/series/plugins/PieLabels.ts +304 -304
- package/src/series/plugins/Rose.ts +472 -472
- package/src/series/plugins/RoseLabels.ts +362 -362
- package/src/series/plugins/SeriesLegend.ts +59 -59
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/series/types.ts +83 -83
- package/src/tree/defaults.ts +22 -22
- package/src/tree/index.ts +3 -3
- package/src/tree/plugins/TreeLegend.ts +59 -59
- package/src/tree/plugins/TreeMap.ts +305 -305
- package/src/tree/types.ts +23 -23
- package/src/utils/commonUtils.ts +21 -21
- package/src/utils/d3Graphics.ts +124 -124
- package/src/utils/d3Utils.ts +73 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +100 -100
- package/tsconfig.dev.json +16 -16
- package/tsconfig.json +13 -13
- package/tsconfig.prod.json +13 -13
- package/vite.config.js +49 -49
- package/dist/src/grid/plugins/BarsDiverging.d.ts +0 -1
| @@ -1,77 +1,77 @@ | |
| 1 | 
            -
            import * as d3 from 'd3'
         | 
| 2 | 
            -
            import {
         | 
| 3 | 
            -
              Subject,
         | 
| 4 | 
            -
              map,
         | 
| 5 | 
            -
              distinctUntilChanged,
         | 
| 6 | 
            -
              shareReplay,
         | 
| 7 | 
            -
              takeUntil
         | 
| 8 | 
            -
            } from 'rxjs'
         | 
| 9 | 
            -
            import {
         | 
| 10 | 
            -
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 11 | 
            -
            import { DEFAULT_MULTI_BARS_PARAMS } from '../defaults'
         | 
| 12 | 
            -
            import { createBaseBars } from '../../base/BaseBars'
         | 
| 13 | 
            -
            import {  | 
| 14 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            -
             | 
| 16 | 
            -
            const pluginName = 'MultiBars'
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            -
             | 
| 20 | 
            -
            export const MultiBars = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 21 | 
            -
              const destroy$ = new Subject()
         | 
| 22 | 
            -
             | 
| 23 | 
            -
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 24 | 
            -
             | 
| 25 | 
            -
              const  | 
| 26 | 
            -
             | 
| 27 | 
            -
               | 
| 28 | 
            -
                .pipe(
         | 
| 29 | 
            -
                  takeUntil(destroy$)
         | 
| 30 | 
            -
                )
         | 
| 31 | 
            -
                .subscribe(data => {
         | 
| 32 | 
            -
                  // 每次重新計算時,清除之前的訂閱
         | 
| 33 | 
            -
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 34 | 
            -
             | 
| 35 | 
            -
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 36 | 
            -
                    .data(data)
         | 
| 37 | 
            -
                    .join('g')
         | 
| 38 | 
            -
                    .attr('class', gridClassName)
         | 
| 39 | 
            -
                    .each((d, i, g) => {
         | 
| 40 | 
            -
             | 
| 41 | 
            -
                      const gridSelection = d3.select(g[i])
         | 
| 42 | 
            -
             | 
| 43 | 
            -
                      const isSeriesSeprate$ = d.dataFormatter$.pipe(
         | 
| 44 | 
            -
                        takeUntil(destroy$),
         | 
| 45 | 
            -
                        map(d => d.grid.separateSeries),
         | 
| 46 | 
            -
                        distinctUntilChanged(),
         | 
| 47 | 
            -
                        shareReplay(1)
         | 
| 48 | 
            -
                      )
         | 
| 49 | 
            -
             | 
| 50 | 
            -
                      unsubscribeFnArr[i] = createBaseBars(pluginName, {
         | 
| 51 | 
            -
                        selection: gridSelection,
         | 
| 52 | 
            -
                        computedData$: d.computedData$,
         | 
| 53 | 
            -
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 54 | 
            -
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 55 | 
            -
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 56 | 
            -
                        seriesLabels$: d.seriesLabels$,
         | 
| 57 | 
            -
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 58 | 
            -
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 59 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 60 | 
            -
                        fullChartParams$: observer.fullChartParams$,
         | 
| 61 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 62 | 
            -
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 63 | 
            -
                        gridGraphicReverseScale$: d.gridGraphicReverseScale$,
         | 
| 64 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 65 | 
            -
                        gridHighlight$: d.gridHighlight$,
         | 
| 66 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 67 | 
            -
                        isSeriesSeprate$,
         | 
| 68 | 
            -
                        event$: subject.event$ as Subject<any>,
         | 
| 69 | 
            -
                      })
         | 
| 70 | 
            -
                    })
         | 
| 71 | 
            -
                })
         | 
| 72 | 
            -
             | 
| 73 | 
            -
              return () => {
         | 
| 74 | 
            -
                destroy$.next(undefined)
         | 
| 75 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 76 | 
            -
              }
         | 
| 77 | 
            -
            })
         | 
| 1 | 
            +
            import * as d3 from 'd3'
         | 
| 2 | 
            +
            import {
         | 
| 3 | 
            +
              Subject,
         | 
| 4 | 
            +
              map,
         | 
| 5 | 
            +
              distinctUntilChanged,
         | 
| 6 | 
            +
              shareReplay,
         | 
| 7 | 
            +
              takeUntil
         | 
| 8 | 
            +
            } from 'rxjs'
         | 
| 9 | 
            +
            import {
         | 
| 10 | 
            +
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 11 | 
            +
            import { DEFAULT_MULTI_BARS_PARAMS } from '../defaults'
         | 
| 12 | 
            +
            import { createBaseBars } from '../../base/BaseBars'
         | 
| 13 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 14 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            const pluginName = 'MultiBars'
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            export const MultiBars = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 21 | 
            +
              const destroy$ = new Subject()
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 24 | 
            +
             | 
| 25 | 
            +
              const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              multiGridPluginDetail$
         | 
| 28 | 
            +
                .pipe(
         | 
| 29 | 
            +
                  takeUntil(destroy$)
         | 
| 30 | 
            +
                )
         | 
| 31 | 
            +
                .subscribe(data => {
         | 
| 32 | 
            +
                  // 每次重新計算時,清除之前的訂閱
         | 
| 33 | 
            +
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 36 | 
            +
                    .data(data)
         | 
| 37 | 
            +
                    .join('g')
         | 
| 38 | 
            +
                    .attr('class', gridClassName)
         | 
| 39 | 
            +
                    .each((d, i, g) => {
         | 
| 40 | 
            +
             | 
| 41 | 
            +
                      const gridSelection = d3.select(g[i])
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                      const isSeriesSeprate$ = d.dataFormatter$.pipe(
         | 
| 44 | 
            +
                        takeUntil(destroy$),
         | 
| 45 | 
            +
                        map(d => d.grid.separateSeries),
         | 
| 46 | 
            +
                        distinctUntilChanged(),
         | 
| 47 | 
            +
                        shareReplay(1)
         | 
| 48 | 
            +
                      )
         | 
| 49 | 
            +
             | 
| 50 | 
            +
                      unsubscribeFnArr[i] = createBaseBars(pluginName, {
         | 
| 51 | 
            +
                        selection: gridSelection,
         | 
| 52 | 
            +
                        computedData$: d.computedData$,
         | 
| 53 | 
            +
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 54 | 
            +
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 55 | 
            +
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 56 | 
            +
                        seriesLabels$: d.seriesLabels$,
         | 
| 57 | 
            +
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 58 | 
            +
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 59 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 60 | 
            +
                        fullChartParams$: observer.fullChartParams$,
         | 
| 61 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 62 | 
            +
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 63 | 
            +
                        gridGraphicReverseScale$: d.gridGraphicReverseScale$,
         | 
| 64 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 65 | 
            +
                        gridHighlight$: d.gridHighlight$,
         | 
| 66 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 67 | 
            +
                        isSeriesSeprate$,
         | 
| 68 | 
            +
                        event$: subject.event$ as Subject<any>,
         | 
| 69 | 
            +
                      })
         | 
| 70 | 
            +
                    })
         | 
| 71 | 
            +
                })
         | 
| 72 | 
            +
             | 
| 73 | 
            +
              return () => {
         | 
| 74 | 
            +
                destroy$.next(undefined)
         | 
| 75 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 76 | 
            +
              }
         | 
| 77 | 
            +
            })
         | 
| @@ -1,77 +1,77 @@ | |
| 1 | 
            -
            import * as d3 from 'd3'
         | 
| 2 | 
            -
            import {
         | 
| 3 | 
            -
              Subject,
         | 
| 4 | 
            -
              map,
         | 
| 5 | 
            -
              distinctUntilChanged,
         | 
| 6 | 
            -
              shareReplay,
         | 
| 7 | 
            -
              takeUntil
         | 
| 8 | 
            -
            } from 'rxjs'
         | 
| 9 | 
            -
            import {
         | 
| 10 | 
            -
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 11 | 
            -
            import { DEFAULT_MULTI_BARS_TRIANGLE_PARAMS } from '../defaults'
         | 
| 12 | 
            -
            import { createBaseBarsTriangle } from '../../base/BaseBarsTriangle'
         | 
| 13 | 
            -
            import {  | 
| 14 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            -
             | 
| 16 | 
            -
            const pluginName = 'MultiBarsTriangle'
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            -
             | 
| 20 | 
            -
            export const MultiBarsTriangle = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_TRIANGLE_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 21 | 
            -
              const destroy$ = new Subject()
         | 
| 22 | 
            -
              
         | 
| 23 | 
            -
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 24 | 
            -
             | 
| 25 | 
            -
              const  | 
| 26 | 
            -
             | 
| 27 | 
            -
               | 
| 28 | 
            -
                .pipe(
         | 
| 29 | 
            -
                  takeUntil(destroy$)
         | 
| 30 | 
            -
                )
         | 
| 31 | 
            -
                .subscribe(data => {
         | 
| 32 | 
            -
                  // 每次重新計算時,清除之前的訂閱
         | 
| 33 | 
            -
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 34 | 
            -
             | 
| 35 | 
            -
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 36 | 
            -
                    .data(data)
         | 
| 37 | 
            -
                    .join('g')
         | 
| 38 | 
            -
                    .attr('class', gridClassName)
         | 
| 39 | 
            -
                    .each((d, i, g) => {
         | 
| 40 | 
            -
             | 
| 41 | 
            -
                      const gridSelection = d3.select(g[i])
         | 
| 42 | 
            -
             | 
| 43 | 
            -
                      const isSeriesSeprate$ = d.dataFormatter$.pipe(
         | 
| 44 | 
            -
                        takeUntil(destroy$),
         | 
| 45 | 
            -
                        map(d => d.grid.separateSeries),
         | 
| 46 | 
            -
                        distinctUntilChanged(),
         | 
| 47 | 
            -
                        shareReplay(1)
         | 
| 48 | 
            -
                      )
         | 
| 49 | 
            -
             | 
| 50 | 
            -
                      unsubscribeFnArr[i] = createBaseBarsTriangle(pluginName, {
         | 
| 51 | 
            -
                        selection: gridSelection,
         | 
| 52 | 
            -
                        computedData$: d.computedData$,
         | 
| 53 | 
            -
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 54 | 
            -
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 55 | 
            -
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 56 | 
            -
                        seriesLabels$: d.seriesLabels$,
         | 
| 57 | 
            -
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 58 | 
            -
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 59 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 60 | 
            -
                        fullChartParams$: observer.fullChartParams$,
         | 
| 61 | 
            -
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 62 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 63 | 
            -
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 64 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 65 | 
            -
                        gridHighlight$: d.gridHighlight$,
         | 
| 66 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 67 | 
            -
                        isSeriesSeprate$: isSeriesSeprate$,
         | 
| 68 | 
            -
                        event$: subject.event$ as Subject<any>,
         | 
| 69 | 
            -
                      })
         | 
| 70 | 
            -
                    })
         | 
| 71 | 
            -
                })
         | 
| 72 | 
            -
             | 
| 73 | 
            -
              return () => {
         | 
| 74 | 
            -
                destroy$.next(undefined)
         | 
| 75 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 76 | 
            -
              }
         | 
| 77 | 
            -
            })
         | 
| 1 | 
            +
            import * as d3 from 'd3'
         | 
| 2 | 
            +
            import {
         | 
| 3 | 
            +
              Subject,
         | 
| 4 | 
            +
              map,
         | 
| 5 | 
            +
              distinctUntilChanged,
         | 
| 6 | 
            +
              shareReplay,
         | 
| 7 | 
            +
              takeUntil
         | 
| 8 | 
            +
            } from 'rxjs'
         | 
| 9 | 
            +
            import {
         | 
| 10 | 
            +
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 11 | 
            +
            import { DEFAULT_MULTI_BARS_TRIANGLE_PARAMS } from '../defaults'
         | 
| 12 | 
            +
            import { createBaseBarsTriangle } from '../../base/BaseBarsTriangle'
         | 
| 13 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 14 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            const pluginName = 'MultiBarsTriangle'
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            export const MultiBarsTriangle = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_TRIANGLE_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 21 | 
            +
              const destroy$ = new Subject()
         | 
| 22 | 
            +
              
         | 
| 23 | 
            +
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 24 | 
            +
             | 
| 25 | 
            +
              const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              multiGridPluginDetail$
         | 
| 28 | 
            +
                .pipe(
         | 
| 29 | 
            +
                  takeUntil(destroy$)
         | 
| 30 | 
            +
                )
         | 
| 31 | 
            +
                .subscribe(data => {
         | 
| 32 | 
            +
                  // 每次重新計算時,清除之前的訂閱
         | 
| 33 | 
            +
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 36 | 
            +
                    .data(data)
         | 
| 37 | 
            +
                    .join('g')
         | 
| 38 | 
            +
                    .attr('class', gridClassName)
         | 
| 39 | 
            +
                    .each((d, i, g) => {
         | 
| 40 | 
            +
             | 
| 41 | 
            +
                      const gridSelection = d3.select(g[i])
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                      const isSeriesSeprate$ = d.dataFormatter$.pipe(
         | 
| 44 | 
            +
                        takeUntil(destroy$),
         | 
| 45 | 
            +
                        map(d => d.grid.separateSeries),
         | 
| 46 | 
            +
                        distinctUntilChanged(),
         | 
| 47 | 
            +
                        shareReplay(1)
         | 
| 48 | 
            +
                      )
         | 
| 49 | 
            +
             | 
| 50 | 
            +
                      unsubscribeFnArr[i] = createBaseBarsTriangle(pluginName, {
         | 
| 51 | 
            +
                        selection: gridSelection,
         | 
| 52 | 
            +
                        computedData$: d.computedData$,
         | 
| 53 | 
            +
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 54 | 
            +
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 55 | 
            +
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 56 | 
            +
                        seriesLabels$: d.seriesLabels$,
         | 
| 57 | 
            +
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 58 | 
            +
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 59 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 60 | 
            +
                        fullChartParams$: observer.fullChartParams$,
         | 
| 61 | 
            +
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 62 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 63 | 
            +
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 64 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 65 | 
            +
                        gridHighlight$: d.gridHighlight$,
         | 
| 66 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 67 | 
            +
                        isSeriesSeprate$: isSeriesSeprate$,
         | 
| 68 | 
            +
                        event$: subject.event$ as Subject<any>,
         | 
| 69 | 
            +
                      })
         | 
| 70 | 
            +
                    })
         | 
| 71 | 
            +
                })
         | 
| 72 | 
            +
             | 
| 73 | 
            +
              return () => {
         | 
| 74 | 
            +
                destroy$.next(undefined)
         | 
| 75 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 76 | 
            +
              }
         | 
| 77 | 
            +
            })
         | 
| @@ -1,65 +1,65 @@ | |
| 1 | 
            -
            import * as d3 from 'd3'
         | 
| 2 | 
            -
            import {
         | 
| 3 | 
            -
              takeUntil,
         | 
| 4 | 
            -
              Subject } from 'rxjs'
         | 
| 5 | 
            -
            import {
         | 
| 6 | 
            -
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 7 | 
            -
            import { DEFAULT_MULTI_DOTS_PARAMS } from '../defaults'
         | 
| 8 | 
            -
            import { createBaseDots } from '../../base/BaseDots'
         | 
| 9 | 
            -
            import {  | 
| 10 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 11 | 
            -
             | 
| 12 | 
            -
            const pluginName = 'MultiDots'
         | 
| 13 | 
            -
             | 
| 14 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 15 | 
            -
             | 
| 16 | 
            -
            export const MultiDots = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_DOTS_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 17 | 
            -
              const destroy$ = new Subject()
         | 
| 18 | 
            -
             | 
| 19 | 
            -
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 20 | 
            -
             | 
| 21 | 
            -
              const  | 
| 22 | 
            -
             | 
| 23 | 
            -
               | 
| 24 | 
            -
                .pipe(
         | 
| 25 | 
            -
                  takeUntil(destroy$)
         | 
| 26 | 
            -
                )
         | 
| 27 | 
            -
                .subscribe(data => {
         | 
| 28 | 
            -
                  // 每次重新計算時,清除之前的訂閱
         | 
| 29 | 
            -
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 30 | 
            -
             | 
| 31 | 
            -
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 32 | 
            -
                    .data(data)
         | 
| 33 | 
            -
                    .join('g')
         | 
| 34 | 
            -
                    .attr('class', gridClassName)
         | 
| 35 | 
            -
                    .each((d, i, g) => {
         | 
| 36 | 
            -
             | 
| 37 | 
            -
                      const gridSelection = d3.select(g[i])
         | 
| 38 | 
            -
             | 
| 39 | 
            -
                      unsubscribeFnArr[i] = createBaseDots(pluginName, {
         | 
| 40 | 
            -
                        selection: gridSelection,
         | 
| 41 | 
            -
                        computedData$: d.computedData$,
         | 
| 42 | 
            -
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 43 | 
            -
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 44 | 
            -
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 45 | 
            -
                        seriesLabels$: d.seriesLabels$,
         | 
| 46 | 
            -
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 47 | 
            -
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 48 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 49 | 
            -
                        fullChartParams$: observer.fullChartParams$,
         | 
| 50 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 51 | 
            -
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 52 | 
            -
                        gridGraphicReverseScale$: d.gridGraphicReverseScale$,
         | 
| 53 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 54 | 
            -
                        gridHighlight$: d.gridHighlight$,
         | 
| 55 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 56 | 
            -
                        event$: subject.event$ as Subject<any>,
         | 
| 57 | 
            -
                      })
         | 
| 58 | 
            -
                    })
         | 
| 59 | 
            -
                })
         | 
| 60 | 
            -
             | 
| 61 | 
            -
              return () => {
         | 
| 62 | 
            -
                destroy$.next(undefined)
         | 
| 63 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 64 | 
            -
              }
         | 
| 65 | 
            -
            })
         | 
| 1 | 
            +
            import * as d3 from 'd3'
         | 
| 2 | 
            +
            import {
         | 
| 3 | 
            +
              takeUntil,
         | 
| 4 | 
            +
              Subject } from 'rxjs'
         | 
| 5 | 
            +
            import {
         | 
| 6 | 
            +
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 7 | 
            +
            import { DEFAULT_MULTI_DOTS_PARAMS } from '../defaults'
         | 
| 8 | 
            +
            import { createBaseDots } from '../../base/BaseDots'
         | 
| 9 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 10 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            const pluginName = 'MultiDots'
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            export const MultiDots = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_DOTS_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 17 | 
            +
              const destroy$ = new Subject()
         | 
| 18 | 
            +
             | 
| 19 | 
            +
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 20 | 
            +
             | 
| 21 | 
            +
              const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              multiGridPluginDetail$
         | 
| 24 | 
            +
                .pipe(
         | 
| 25 | 
            +
                  takeUntil(destroy$)
         | 
| 26 | 
            +
                )
         | 
| 27 | 
            +
                .subscribe(data => {
         | 
| 28 | 
            +
                  // 每次重新計算時,清除之前的訂閱
         | 
| 29 | 
            +
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 30 | 
            +
             | 
| 31 | 
            +
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 32 | 
            +
                    .data(data)
         | 
| 33 | 
            +
                    .join('g')
         | 
| 34 | 
            +
                    .attr('class', gridClassName)
         | 
| 35 | 
            +
                    .each((d, i, g) => {
         | 
| 36 | 
            +
             | 
| 37 | 
            +
                      const gridSelection = d3.select(g[i])
         | 
| 38 | 
            +
             | 
| 39 | 
            +
                      unsubscribeFnArr[i] = createBaseDots(pluginName, {
         | 
| 40 | 
            +
                        selection: gridSelection,
         | 
| 41 | 
            +
                        computedData$: d.computedData$,
         | 
| 42 | 
            +
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 43 | 
            +
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 44 | 
            +
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 45 | 
            +
                        seriesLabels$: d.seriesLabels$,
         | 
| 46 | 
            +
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 47 | 
            +
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 48 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 49 | 
            +
                        fullChartParams$: observer.fullChartParams$,
         | 
| 50 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 51 | 
            +
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 52 | 
            +
                        gridGraphicReverseScale$: d.gridGraphicReverseScale$,
         | 
| 53 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 54 | 
            +
                        gridHighlight$: d.gridHighlight$,
         | 
| 55 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 56 | 
            +
                        event$: subject.event$ as Subject<any>,
         | 
| 57 | 
            +
                      })
         | 
| 58 | 
            +
                    })
         | 
| 59 | 
            +
                })
         | 
| 60 | 
            +
             | 
| 61 | 
            +
              return () => {
         | 
| 62 | 
            +
                destroy$.next(undefined)
         | 
| 63 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 64 | 
            +
              }
         | 
| 65 | 
            +
            })
         | 
| @@ -1,89 +1,89 @@ | |
| 1 | 
            -
            import * as d3 from 'd3'
         | 
| 2 | 
            -
            import {
         | 
| 3 | 
            -
              combineLatest,
         | 
| 4 | 
            -
              map,
         | 
| 5 | 
            -
              switchMap,
         | 
| 6 | 
            -
              takeUntil,
         | 
| 7 | 
            -
              Observable,
         | 
| 8 | 
            -
              Subject } from 'rxjs'
         | 
| 9 | 
            -
            import {
         | 
| 10 | 
            -
              defineMultiGridPlugin, mergeOptionsWithDefault } from '@orbcharts/core'
         | 
| 11 | 
            -
            import { DEFAULT_MULTI_GRID_LEGEND_PARAMS } from '../defaults'
         | 
| 12 | 
            -
            import { createBaseLegend } from '../../base/BaseLegend'
         | 
| 13 | 
            -
            import type { BaseLegendParams } from '../../base/BaseLegend'
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            const pluginName = 'MultiGridLegend'
         | 
| 16 | 
            -
             | 
| 17 | 
            -
            export const MultiGridLegend = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GRID_LEGEND_PARAMS)(({ selection, rootSelection, observer, subject }) => {
         | 
| 18 | 
            -
              
         | 
| 19 | 
            -
              const destroy$ = new Subject()
         | 
| 20 | 
            -
             | 
| 21 | 
            -
              const seriesLabels$ = observer.multiGridEachDetail$.pipe(
         | 
| 22 | 
            -
                takeUntil(destroy$),
         | 
| 23 | 
            -
                map(multiGrid => {
         | 
| 24 | 
            -
                  const seriesLabelsObservableArr = multiGrid.map((grid, gridIndex) => {
         | 
| 25 | 
            -
                    return grid.SeriesDataMap$.pipe(
         | 
| 26 | 
            -
                      // grid內的seriesLabels
         | 
| 27 | 
            -
                      map(seriesDataMap => Array.from(seriesDataMap.keys()))
         | 
| 28 | 
            -
                    )
         | 
| 29 | 
            -
                  })
         | 
| 30 | 
            -
                  return seriesLabelsObservableArr
         | 
| 31 | 
            -
                }),
         | 
| 32 | 
            -
                switchMap(seriesLabelsObservableArr => combineLatest(seriesLabelsObservableArr)),
         | 
| 33 | 
            -
                map(data => data.flat())
         | 
| 34 | 
            -
              )
         | 
| 35 | 
            -
             | 
| 36 | 
            -
              const seriesList$ = combineLatest({
         | 
| 37 | 
            -
                fullParams: observer.fullParams$,
         | 
| 38 | 
            -
                // multiGrid: observer.multiGridEachDetail$,
         | 
| 39 | 
            -
                computedData: observer.computedData$,
         | 
| 40 | 
            -
              }).pipe(
         | 
| 41 | 
            -
                takeUntil(destroy$),
         | 
| 42 | 
            -
                switchMap(async d => d),
         | 
| 43 | 
            -
                map(data => {
         | 
| 44 | 
            -
                  // grid
         | 
| 45 | 
            -
                  return data.computedData
         | 
| 46 | 
            -
                    .map((gridData, gridIndex) => {
         | 
| 47 | 
            -
                      // 這個grid全部series要套用的圖例列點樣式
         | 
| 48 | 
            -
                      const gridListStyle = mergeOptionsWithDefault(data.fullParams.gridList[gridIndex] ?? {}, {
         | 
| 49 | 
            -
                        listRectWidth: data.fullParams.listRectWidth,
         | 
| 50 | 
            -
                        listRectHeight: data.fullParams.listRectHeight,
         | 
| 51 | 
            -
                        listRectRadius: data.fullParams.listRectRadius,
         | 
| 52 | 
            -
                      })
         | 
| 53 | 
            -
                      // series
         | 
| 54 | 
            -
                      return gridData.map(d => gridListStyle)
         | 
| 55 | 
            -
                    })
         | 
| 56 | 
            -
                    .flat()
         | 
| 57 | 
            -
             | 
| 58 | 
            -
                })
         | 
| 59 | 
            -
              )
         | 
| 60 | 
            -
             | 
| 61 | 
            -
              const fullParams$: Observable<BaseLegendParams> = combineLatest({
         | 
| 62 | 
            -
                fullParams: observer.fullParams$,
         | 
| 63 | 
            -
                seriesList: seriesList$
         | 
| 64 | 
            -
              }).pipe(
         | 
| 65 | 
            -
                takeUntil(destroy$),
         | 
| 66 | 
            -
                switchMap(async d => d),
         | 
| 67 | 
            -
                map(d => {
         | 
| 68 | 
            -
                  return {
         | 
| 69 | 
            -
                    ...d.fullParams,
         | 
| 70 | 
            -
                    seriesList: d.seriesList
         | 
| 71 | 
            -
                  }
         | 
| 72 | 
            -
                })
         | 
| 73 | 
            -
              )
         | 
| 74 | 
            -
             | 
| 75 | 
            -
              const unsubscribeBaseLegend = createBaseLegend(pluginName, {
         | 
| 76 | 
            -
                rootSelection,
         | 
| 77 | 
            -
                seriesLabels$,
         | 
| 78 | 
            -
                fullParams$,
         | 
| 79 | 
            -
                layout$: observer.layout$,
         | 
| 80 | 
            -
                fullChartParams$: observer.fullChartParams$,
         | 
| 81 | 
            -
                textSizePx$: observer.textSizePx$
         | 
| 82 | 
            -
              })
         | 
| 83 | 
            -
             | 
| 84 | 
            -
              return () => {
         | 
| 85 | 
            -
                destroy$.next(undefined)
         | 
| 86 | 
            -
                unsubscribeBaseLegend()
         | 
| 87 | 
            -
              }
         | 
| 88 | 
            -
            })
         | 
| 89 | 
            -
             | 
| 1 | 
            +
            import * as d3 from 'd3'
         | 
| 2 | 
            +
            import {
         | 
| 3 | 
            +
              combineLatest,
         | 
| 4 | 
            +
              map,
         | 
| 5 | 
            +
              switchMap,
         | 
| 6 | 
            +
              takeUntil,
         | 
| 7 | 
            +
              Observable,
         | 
| 8 | 
            +
              Subject } from 'rxjs'
         | 
| 9 | 
            +
            import {
         | 
| 10 | 
            +
              defineMultiGridPlugin, mergeOptionsWithDefault } from '@orbcharts/core'
         | 
| 11 | 
            +
            import { DEFAULT_MULTI_GRID_LEGEND_PARAMS } from '../defaults'
         | 
| 12 | 
            +
            import { createBaseLegend } from '../../base/BaseLegend'
         | 
| 13 | 
            +
            import type { BaseLegendParams } from '../../base/BaseLegend'
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            const pluginName = 'MultiGridLegend'
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            export const MultiGridLegend = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GRID_LEGEND_PARAMS)(({ selection, rootSelection, observer, subject }) => {
         | 
| 18 | 
            +
              
         | 
| 19 | 
            +
              const destroy$ = new Subject()
         | 
| 20 | 
            +
             | 
| 21 | 
            +
              const seriesLabels$ = observer.multiGridEachDetail$.pipe(
         | 
| 22 | 
            +
                takeUntil(destroy$),
         | 
| 23 | 
            +
                map(multiGrid => {
         | 
| 24 | 
            +
                  const seriesLabelsObservableArr = multiGrid.map((grid, gridIndex) => {
         | 
| 25 | 
            +
                    return grid.SeriesDataMap$.pipe(
         | 
| 26 | 
            +
                      // grid內的seriesLabels
         | 
| 27 | 
            +
                      map(seriesDataMap => Array.from(seriesDataMap.keys()))
         | 
| 28 | 
            +
                    )
         | 
| 29 | 
            +
                  })
         | 
| 30 | 
            +
                  return seriesLabelsObservableArr
         | 
| 31 | 
            +
                }),
         | 
| 32 | 
            +
                switchMap(seriesLabelsObservableArr => combineLatest(seriesLabelsObservableArr)),
         | 
| 33 | 
            +
                map(data => data.flat())
         | 
| 34 | 
            +
              )
         | 
| 35 | 
            +
             | 
| 36 | 
            +
              const seriesList$ = combineLatest({
         | 
| 37 | 
            +
                fullParams: observer.fullParams$,
         | 
| 38 | 
            +
                // multiGrid: observer.multiGridEachDetail$,
         | 
| 39 | 
            +
                computedData: observer.computedData$,
         | 
| 40 | 
            +
              }).pipe(
         | 
| 41 | 
            +
                takeUntil(destroy$),
         | 
| 42 | 
            +
                switchMap(async d => d),
         | 
| 43 | 
            +
                map(data => {
         | 
| 44 | 
            +
                  // grid
         | 
| 45 | 
            +
                  return data.computedData
         | 
| 46 | 
            +
                    .map((gridData, gridIndex) => {
         | 
| 47 | 
            +
                      // 這個grid全部series要套用的圖例列點樣式
         | 
| 48 | 
            +
                      const gridListStyle = mergeOptionsWithDefault(data.fullParams.gridList[gridIndex] ?? {}, {
         | 
| 49 | 
            +
                        listRectWidth: data.fullParams.listRectWidth,
         | 
| 50 | 
            +
                        listRectHeight: data.fullParams.listRectHeight,
         | 
| 51 | 
            +
                        listRectRadius: data.fullParams.listRectRadius,
         | 
| 52 | 
            +
                      })
         | 
| 53 | 
            +
                      // series
         | 
| 54 | 
            +
                      return gridData.map(d => gridListStyle)
         | 
| 55 | 
            +
                    })
         | 
| 56 | 
            +
                    .flat()
         | 
| 57 | 
            +
             | 
| 58 | 
            +
                })
         | 
| 59 | 
            +
              )
         | 
| 60 | 
            +
             | 
| 61 | 
            +
              const fullParams$: Observable<BaseLegendParams> = combineLatest({
         | 
| 62 | 
            +
                fullParams: observer.fullParams$,
         | 
| 63 | 
            +
                seriesList: seriesList$
         | 
| 64 | 
            +
              }).pipe(
         | 
| 65 | 
            +
                takeUntil(destroy$),
         | 
| 66 | 
            +
                switchMap(async d => d),
         | 
| 67 | 
            +
                map(d => {
         | 
| 68 | 
            +
                  return {
         | 
| 69 | 
            +
                    ...d.fullParams,
         | 
| 70 | 
            +
                    seriesList: d.seriesList
         | 
| 71 | 
            +
                  }
         | 
| 72 | 
            +
                })
         | 
| 73 | 
            +
              )
         | 
| 74 | 
            +
             | 
| 75 | 
            +
              const unsubscribeBaseLegend = createBaseLegend(pluginName, {
         | 
| 76 | 
            +
                rootSelection,
         | 
| 77 | 
            +
                seriesLabels$,
         | 
| 78 | 
            +
                fullParams$,
         | 
| 79 | 
            +
                layout$: observer.layout$,
         | 
| 80 | 
            +
                fullChartParams$: observer.fullChartParams$,
         | 
| 81 | 
            +
                textSizePx$: observer.textSizePx$
         | 
| 82 | 
            +
              })
         | 
| 83 | 
            +
             | 
| 84 | 
            +
              return () => {
         | 
| 85 | 
            +
                destroy$.next(undefined)
         | 
| 86 | 
            +
                unsubscribeBaseLegend()
         | 
| 87 | 
            +
              }
         | 
| 88 | 
            +
            })
         | 
| 89 | 
            +
             |