@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,69 +1,69 @@ | |
| 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_GROUP_AXIS_PARAMS } from '../defaults'
         | 
| 12 | 
            -
            import { createBaseGroupAxis } from '../../base/BaseGroupAxis'
         | 
| 13 | 
            -
            import {  | 
| 14 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            -
             | 
| 16 | 
            -
            const pluginName = 'MultiGroupAxis'
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            -
             | 
| 20 | 
            -
            export const MultiGroupAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GROUP_AXIS_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] = createBaseGroupAxis(pluginName, {
         | 
| 51 | 
            -
                        selection: gridSelection,
         | 
| 52 | 
            -
                        computedData$: d.computedData$,
         | 
| 53 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 54 | 
            -
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 55 | 
            -
                        fullChartParams$: observer.fullChartParams$,  
         | 
| 56 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 57 | 
            -
                        gridAxesReverseTransform$: d.gridAxesReverseTransform$,
         | 
| 58 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 59 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 60 | 
            -
                        isSeriesSeprate$,
         | 
| 61 | 
            -
                      })
         | 
| 62 | 
            -
                    })
         | 
| 63 | 
            -
                })
         | 
| 64 | 
            -
             | 
| 65 | 
            -
              return () => {
         | 
| 66 | 
            -
                destroy$.next(undefined)
         | 
| 67 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 68 | 
            -
              }
         | 
| 69 | 
            -
            })
         | 
| 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_GROUP_AXIS_PARAMS } from '../defaults'
         | 
| 12 | 
            +
            import { createBaseGroupAxis } from '../../base/BaseGroupAxis'
         | 
| 13 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 14 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            const pluginName = 'MultiGroupAxis'
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            export const MultiGroupAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GROUP_AXIS_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] = createBaseGroupAxis(pluginName, {
         | 
| 51 | 
            +
                        selection: gridSelection,
         | 
| 52 | 
            +
                        computedData$: d.computedData$,
         | 
| 53 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 54 | 
            +
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 55 | 
            +
                        fullChartParams$: observer.fullChartParams$,  
         | 
| 56 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 57 | 
            +
                        gridAxesReverseTransform$: d.gridAxesReverseTransform$,
         | 
| 58 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 59 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 60 | 
            +
                        isSeriesSeprate$,
         | 
| 61 | 
            +
                      })
         | 
| 62 | 
            +
                    })
         | 
| 63 | 
            +
                })
         | 
| 64 | 
            +
             | 
| 65 | 
            +
              return () => {
         | 
| 66 | 
            +
                destroy$.next(undefined)
         | 
| 67 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 68 | 
            +
              }
         | 
| 69 | 
            +
            })
         | 
| @@ -1,67 +1,67 @@ | |
| 1 | 
            -
            import * as d3 from 'd3'
         | 
| 2 | 
            -
            import {
         | 
| 3 | 
            -
              takeUntil,
         | 
| 4 | 
            -
              Subject } from 'rxjs'
         | 
| 5 | 
            -
            import {
         | 
| 6 | 
            -
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 7 | 
            -
             | 
| 8 | 
            -
            import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
         | 
| 9 | 
            -
            import { createBaseLineAreas } from '../../base/BaseLineAreas'
         | 
| 10 | 
            -
            import {  | 
| 11 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 12 | 
            -
             | 
| 13 | 
            -
            const pluginName = 'MultiLineAreas'
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 16 | 
            -
             | 
| 17 | 
            -
            export const MultiLineAreas = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINE_AREAS_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 18 | 
            -
              const destroy$ = new Subject()
         | 
| 19 | 
            -
              
         | 
| 20 | 
            -
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 21 | 
            -
             | 
| 22 | 
            -
              const  | 
| 23 | 
            -
             | 
| 24 | 
            -
               | 
| 25 | 
            -
                .pipe(
         | 
| 26 | 
            -
                  takeUntil(destroy$)
         | 
| 27 | 
            -
                )
         | 
| 28 | 
            -
                .subscribe(data => {
         | 
| 29 | 
            -
                  // 每次重新計算時,清除之前的訂閱
         | 
| 30 | 
            -
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 31 | 
            -
             | 
| 32 | 
            -
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 33 | 
            -
                    .data(data)
         | 
| 34 | 
            -
                    .join('g')
         | 
| 35 | 
            -
                    .attr('class', gridClassName)
         | 
| 36 | 
            -
                    .each((d, i, g) => {
         | 
| 37 | 
            -
             | 
| 38 | 
            -
                      const gridSelection = d3.select(g[i])
         | 
| 39 | 
            -
             | 
| 40 | 
            -
                      unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
         | 
| 41 | 
            -
                        selection: gridSelection,
         | 
| 42 | 
            -
                        computedData$: d.computedData$,
         | 
| 43 | 
            -
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 44 | 
            -
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 45 | 
            -
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 46 | 
            -
                        seriesLabels$: d.seriesLabels$,
         | 
| 47 | 
            -
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 48 | 
            -
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 49 | 
            -
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 50 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 51 | 
            -
                        fullChartParams$: observer.fullChartParams$,
         | 
| 52 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 53 | 
            -
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 54 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 55 | 
            -
                        gridHighlight$: d.gridHighlight$,
         | 
| 56 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 57 | 
            -
                        layout$: observer.layout$,
         | 
| 58 | 
            -
                        event$: subject.event$ as Subject<any>,
         | 
| 59 | 
            -
                      })
         | 
| 60 | 
            -
                    })
         | 
| 61 | 
            -
                })
         | 
| 62 | 
            -
             | 
| 63 | 
            -
              return () => {
         | 
| 64 | 
            -
                destroy$.next(undefined)
         | 
| 65 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 66 | 
            -
              }
         | 
| 67 | 
            -
            })
         | 
| 1 | 
            +
            import * as d3 from 'd3'
         | 
| 2 | 
            +
            import {
         | 
| 3 | 
            +
              takeUntil,
         | 
| 4 | 
            +
              Subject } from 'rxjs'
         | 
| 5 | 
            +
            import {
         | 
| 6 | 
            +
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
         | 
| 9 | 
            +
            import { createBaseLineAreas } from '../../base/BaseLineAreas'
         | 
| 10 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 11 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            const pluginName = 'MultiLineAreas'
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            export const MultiLineAreas = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINE_AREAS_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 18 | 
            +
              const destroy$ = new Subject()
         | 
| 19 | 
            +
              
         | 
| 20 | 
            +
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 21 | 
            +
             | 
| 22 | 
            +
              const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              multiGridPluginDetail$
         | 
| 25 | 
            +
                .pipe(
         | 
| 26 | 
            +
                  takeUntil(destroy$)
         | 
| 27 | 
            +
                )
         | 
| 28 | 
            +
                .subscribe(data => {
         | 
| 29 | 
            +
                  // 每次重新計算時,清除之前的訂閱
         | 
| 30 | 
            +
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 33 | 
            +
                    .data(data)
         | 
| 34 | 
            +
                    .join('g')
         | 
| 35 | 
            +
                    .attr('class', gridClassName)
         | 
| 36 | 
            +
                    .each((d, i, g) => {
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                      const gridSelection = d3.select(g[i])
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                      unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
         | 
| 41 | 
            +
                        selection: gridSelection,
         | 
| 42 | 
            +
                        computedData$: d.computedData$,
         | 
| 43 | 
            +
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 44 | 
            +
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 45 | 
            +
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 46 | 
            +
                        seriesLabels$: d.seriesLabels$,
         | 
| 47 | 
            +
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 48 | 
            +
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 49 | 
            +
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 50 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 51 | 
            +
                        fullChartParams$: observer.fullChartParams$,
         | 
| 52 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 53 | 
            +
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 54 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 55 | 
            +
                        gridHighlight$: d.gridHighlight$,
         | 
| 56 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 57 | 
            +
                        layout$: observer.layout$,
         | 
| 58 | 
            +
                        event$: subject.event$ as Subject<any>,
         | 
| 59 | 
            +
                      })
         | 
| 60 | 
            +
                    })
         | 
| 61 | 
            +
                })
         | 
| 62 | 
            +
             | 
| 63 | 
            +
              return () => {
         | 
| 64 | 
            +
                destroy$.next(undefined)
         | 
| 65 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 66 | 
            +
              }
         | 
| 67 | 
            +
            })
         | 
| @@ -1,66 +1,66 @@ | |
| 1 | 
            -
            import * as d3 from 'd3'
         | 
| 2 | 
            -
            import {
         | 
| 3 | 
            -
              takeUntil,
         | 
| 4 | 
            -
              Subject } from 'rxjs'
         | 
| 5 | 
            -
            import {
         | 
| 6 | 
            -
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 7 | 
            -
             | 
| 8 | 
            -
            import { DEFAULT_MULTI_LINES_PARAMS } from '../defaults'
         | 
| 9 | 
            -
            import { createBaseLines } from '../../base/BaseLines'
         | 
| 10 | 
            -
            import {  | 
| 11 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 12 | 
            -
             | 
| 13 | 
            -
            const pluginName = 'MultiLines'
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 16 | 
            -
             | 
| 17 | 
            -
            export const MultiLines = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINES_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 18 | 
            -
              const destroy$ = new Subject()
         | 
| 19 | 
            -
              
         | 
| 20 | 
            -
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 21 | 
            -
             | 
| 22 | 
            -
              const  | 
| 23 | 
            -
             | 
| 24 | 
            -
               | 
| 25 | 
            -
                .pipe(
         | 
| 26 | 
            -
                  takeUntil(destroy$)
         | 
| 27 | 
            -
                )
         | 
| 28 | 
            -
                .subscribe(data => {
         | 
| 29 | 
            -
                  // 每次重新計算時,清除之前的訂閱
         | 
| 30 | 
            -
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 31 | 
            -
             | 
| 32 | 
            -
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 33 | 
            -
                    .data(data)
         | 
| 34 | 
            -
                    .join('g')
         | 
| 35 | 
            -
                    .attr('class', gridClassName)
         | 
| 36 | 
            -
                    .each((d, i, g) => {
         | 
| 37 | 
            -
             | 
| 38 | 
            -
                      const gridSelection = d3.select(g[i])
         | 
| 39 | 
            -
             | 
| 40 | 
            -
                      unsubscribeFnArr[i] = createBaseLines(pluginName, {
         | 
| 41 | 
            -
                        selection: gridSelection,
         | 
| 42 | 
            -
                        computedData$: d.computedData$,
         | 
| 43 | 
            -
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 44 | 
            -
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 45 | 
            -
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 46 | 
            -
                        seriesLabels$: d.seriesLabels$,
         | 
| 47 | 
            -
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 48 | 
            -
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 49 | 
            -
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 50 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 51 | 
            -
                        fullChartParams$: observer.fullChartParams$,
         | 
| 52 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 53 | 
            -
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 54 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 55 | 
            -
                        gridHighlight$: d.gridHighlight$,
         | 
| 56 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 57 | 
            -
                        event$: subject.event$ as Subject<any>,
         | 
| 58 | 
            -
                      })
         | 
| 59 | 
            -
                    })
         | 
| 60 | 
            -
                })
         | 
| 61 | 
            -
             | 
| 62 | 
            -
              return () => {
         | 
| 63 | 
            -
                destroy$.next(undefined)
         | 
| 64 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 65 | 
            -
              }
         | 
| 66 | 
            -
            })
         | 
| 1 | 
            +
            import * as d3 from 'd3'
         | 
| 2 | 
            +
            import {
         | 
| 3 | 
            +
              takeUntil,
         | 
| 4 | 
            +
              Subject } from 'rxjs'
         | 
| 5 | 
            +
            import {
         | 
| 6 | 
            +
              defineMultiGridPlugin } from '@orbcharts/core'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            import { DEFAULT_MULTI_LINES_PARAMS } from '../defaults'
         | 
| 9 | 
            +
            import { createBaseLines } from '../../base/BaseLines'
         | 
| 10 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 11 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            const pluginName = 'MultiLines'
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            export const MultiLines = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINES_PARAMS)(({ selection, name, subject, observer }) => {
         | 
| 18 | 
            +
              const destroy$ = new Subject()
         | 
| 19 | 
            +
              
         | 
| 20 | 
            +
              const unsubscribeFnArr: (() => void)[] = []
         | 
| 21 | 
            +
             | 
| 22 | 
            +
              const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              multiGridPluginDetail$
         | 
| 25 | 
            +
                .pipe(
         | 
| 26 | 
            +
                  takeUntil(destroy$)
         | 
| 27 | 
            +
                )
         | 
| 28 | 
            +
                .subscribe(data => {
         | 
| 29 | 
            +
                  // 每次重新計算時,清除之前的訂閱
         | 
| 30 | 
            +
                  unsubscribeFnArr.forEach(fn => fn())
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                  selection.selectAll(`g.${gridClassName}`)
         | 
| 33 | 
            +
                    .data(data)
         | 
| 34 | 
            +
                    .join('g')
         | 
| 35 | 
            +
                    .attr('class', gridClassName)
         | 
| 36 | 
            +
                    .each((d, i, g) => {
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                      const gridSelection = d3.select(g[i])
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                      unsubscribeFnArr[i] = createBaseLines(pluginName, {
         | 
| 41 | 
            +
                        selection: gridSelection,
         | 
| 42 | 
            +
                        computedData$: d.computedData$,
         | 
| 43 | 
            +
                        computedLayoutData$: d.computedLayoutData$,
         | 
| 44 | 
            +
                        visibleComputedData$: d.visibleComputedData$,
         | 
| 45 | 
            +
                        visibleComputedLayoutData$: d.visibleComputedLayoutData$,
         | 
| 46 | 
            +
                        seriesLabels$: d.seriesLabels$,
         | 
| 47 | 
            +
                        SeriesDataMap$: d.SeriesDataMap$,
         | 
| 48 | 
            +
                        GroupDataMap$: d.GroupDataMap$,
         | 
| 49 | 
            +
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 50 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 51 | 
            +
                        fullChartParams$: observer.fullChartParams$,
         | 
| 52 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 53 | 
            +
                        gridGraphicTransform$: d.gridGraphicTransform$,
         | 
| 54 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 55 | 
            +
                        gridHighlight$: d.gridHighlight$,
         | 
| 56 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 57 | 
            +
                        event$: subject.event$ as Subject<any>,
         | 
| 58 | 
            +
                      })
         | 
| 59 | 
            +
                    })
         | 
| 60 | 
            +
                })
         | 
| 61 | 
            +
             | 
| 62 | 
            +
              return () => {
         | 
| 63 | 
            +
                destroy$.next(undefined)
         | 
| 64 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 65 | 
            +
              }
         | 
| 66 | 
            +
            })
         | 
| @@ -1,69 +1,69 @@ | |
| 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_VALUE_AXIS_PARAMS } from '../defaults'
         | 
| 12 | 
            -
            import { createBaseValueAxis } from '../../base/BaseValueAxis'
         | 
| 13 | 
            -
            import {  | 
| 14 | 
            -
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            -
             | 
| 16 | 
            -
            const pluginName = 'MultiValueAxis'
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            -
             | 
| 20 | 
            -
            export const MultiValueAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_VALUE_AXIS_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] = createBaseValueAxis(pluginName, {
         | 
| 51 | 
            -
                        selection: gridSelection,
         | 
| 52 | 
            -
                        computedData$: d.computedData$,
         | 
| 53 | 
            -
                        fullParams$: observer.fullParams$,
         | 
| 54 | 
            -
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 55 | 
            -
                        fullChartParams$: observer.fullChartParams$,  
         | 
| 56 | 
            -
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 57 | 
            -
                        gridAxesReverseTransform$: d.gridAxesReverseTransform$,
         | 
| 58 | 
            -
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 59 | 
            -
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 60 | 
            -
                        isSeriesSeprate$,
         | 
| 61 | 
            -
                      })
         | 
| 62 | 
            -
                    })
         | 
| 63 | 
            -
                })
         | 
| 64 | 
            -
             | 
| 65 | 
            -
              return () => {
         | 
| 66 | 
            -
                destroy$.next(undefined)
         | 
| 67 | 
            -
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 68 | 
            -
              }
         | 
| 69 | 
            -
            })
         | 
| 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_VALUE_AXIS_PARAMS } from '../defaults'
         | 
| 12 | 
            +
            import { createBaseValueAxis } from '../../base/BaseValueAxis'
         | 
| 13 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 14 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            const pluginName = 'MultiValueAxis'
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            export const MultiValueAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_VALUE_AXIS_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] = createBaseValueAxis(pluginName, {
         | 
| 51 | 
            +
                        selection: gridSelection,
         | 
| 52 | 
            +
                        computedData$: d.computedData$,
         | 
| 53 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 54 | 
            +
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 55 | 
            +
                        fullChartParams$: observer.fullChartParams$,  
         | 
| 56 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 57 | 
            +
                        gridAxesReverseTransform$: d.gridAxesReverseTransform$,
         | 
| 58 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 59 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 60 | 
            +
                        isSeriesSeprate$,
         | 
| 61 | 
            +
                      })
         | 
| 62 | 
            +
                    })
         | 
| 63 | 
            +
                })
         | 
| 64 | 
            +
             | 
| 65 | 
            +
              return () => {
         | 
| 66 | 
            +
                destroy$.next(undefined)
         | 
| 67 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 68 | 
            +
              }
         | 
| 69 | 
            +
            })
         | 
| @@ -0,0 +1,69 @@ | |
| 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_VALUE_AXIS_PARAMS } from '../defaults'
         | 
| 12 | 
            +
            import { createBaseValueAxis } from '../../base/BaseValueAxis'
         | 
| 13 | 
            +
            import { multiGridPluginDetailObservables } from '../multiGridObservables'
         | 
| 14 | 
            +
            import { getClassName, getUniID } from '../../utils/orbchartsUtils'
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            const pluginName = 'MultiValueStackAxis'
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            const gridClassName = getClassName(pluginName, 'grid')
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            export const MultiValueStackAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_VALUE_AXIS_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] = createBaseValueAxis(pluginName, {
         | 
| 51 | 
            +
                        selection: gridSelection,
         | 
| 52 | 
            +
                        computedData$: d.computedStackedData$, // 計算疊加value的資料
         | 
| 53 | 
            +
                        fullParams$: observer.fullParams$,
         | 
| 54 | 
            +
                        fullDataFormatter$: d.dataFormatter$,
         | 
| 55 | 
            +
                        fullChartParams$: observer.fullChartParams$,  
         | 
| 56 | 
            +
                        gridAxesTransform$: d.gridAxesTransform$,
         | 
| 57 | 
            +
                        gridAxesReverseTransform$: d.gridAxesReverseTransform$,
         | 
| 58 | 
            +
                        gridAxesSize$: d.gridAxesSize$,
         | 
| 59 | 
            +
                        gridContainerPosition$: d.gridContainerPosition$,
         | 
| 60 | 
            +
                        isSeriesSeprate$,
         | 
| 61 | 
            +
                      })
         | 
| 62 | 
            +
                    })
         | 
| 63 | 
            +
                })
         | 
| 64 | 
            +
             | 
| 65 | 
            +
              return () => {
         | 
| 66 | 
            +
                destroy$.next(undefined)
         | 
| 67 | 
            +
                unsubscribeFnArr.forEach(fn => fn())
         | 
| 68 | 
            +
              }
         | 
| 69 | 
            +
            })
         |