@orbcharts/plugins-basic 3.0.0-beta.2 → 3.0.0-beta.20
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 +15169 -10684
- package/dist/orbcharts-plugins-basic.umd.js +296 -83
- package/dist/src/base/BaseBars.d.ts +4 -4
- package/dist/src/base/BaseBarsTriangle.d.ts +4 -4
- package/dist/src/base/BaseDots.d.ts +4 -4
- package/dist/src/base/BaseGroupAxis.d.ts +2 -2
- package/dist/src/base/BaseLegend.d.ts +1 -1
- package/dist/src/base/BaseLineAreas.d.ts +5 -5
- package/dist/src/base/BaseLines.d.ts +5 -5
- package/dist/src/base/BaseRacingBars.d.ts +23 -0
- package/dist/src/base/BaseRacingLabels.d.ts +20 -0
- package/dist/src/base/BaseRacingValueLabels.d.ts +20 -0
- package/dist/src/base/{BaseBarStack.d.ts → BaseStackedBars.d.ts} +8 -8
- package/dist/src/base/BaseValueAxis.d.ts +6 -8
- package/dist/src/base/BaseXAxis.d.ts +20 -0
- package/dist/src/base/BaseYAxis.d.ts +18 -0
- package/dist/src/grid/defaults.d.ts +5 -5
- package/dist/src/grid/gridObservables.d.ts +12 -5
- package/dist/src/grid/index.d.ts +3 -3
- package/dist/src/grid/plugins/GroupZoom.d.ts +1 -0
- package/dist/src/grid/plugins/StackedBars.d.ts +1 -0
- package/dist/src/grid/plugins/StackedValueAxis.d.ts +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/multiGrid/defaults.d.ts +4 -4
- package/dist/src/multiGrid/index.d.ts +3 -3
- package/dist/src/multiGrid/plugins/MultiStackedBars.d.ts +1 -0
- package/dist/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
- package/dist/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
- package/dist/src/multiValue/defaults.d.ts +13 -0
- package/dist/src/multiValue/index.d.ts +12 -0
- package/dist/src/multiValue/multiValueObservables.d.ts +56 -0
- package/dist/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
- package/dist/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingBars.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingCounterTexts.d.ts +3 -0
- package/dist/src/multiValue/plugins/RacingValueAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/Scatter.d.ts +3 -0
- package/dist/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
- package/dist/src/multiValue/plugins/XAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAux.d.ts +3 -0
- package/dist/src/multiValue/plugins/XYAxes.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAxes_legacy.d.ts +3 -0
- package/dist/src/multiValue/plugins/XZoom.d.ts +1 -0
- package/dist/src/noneData/plugins/Container.d.ts +0 -1
- package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
- package/dist/src/relationship/defaults.d.ts +6 -0
- package/dist/src/relationship/index.d.ts +5 -0
- package/dist/src/relationship/plugins/ForceDirected.d.ts +3 -0
- package/dist/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
- package/dist/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
- package/dist/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
- package/dist/src/relationship/relationshipObservables.d.ts +1 -0
- package/dist/src/series/seriesObservables.d.ts +3 -3
- package/dist/src/utils/commonUtils.d.ts +2 -1
- package/dist/src/utils/d3Graphics.d.ts +2 -1
- package/dist/src/utils/d3Utils.d.ts +3 -2
- package/dist/src/utils/observables.d.ts +1 -1
- package/dist/src/utils/orbchartsUtils.d.ts +3 -3
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +44 -44
- package/src/base/BaseBars.ts +765 -765
- package/src/base/BaseBarsTriangle.ts +676 -674
- package/src/base/BaseDots.ts +464 -515
- package/src/base/BaseGroupAxis.ts +691 -679
- package/src/base/BaseLegend.ts +684 -680
- package/src/base/BaseLineAreas.ts +629 -629
- package/src/base/BaseLines.ts +706 -706
- package/src/base/BaseRacingBars.ts +552 -0
- package/src/base/BaseRacingLabels.ts +396 -0
- package/src/base/BaseRacingValueLabels.ts +403 -0
- package/src/base/{BaseBarStack.ts → BaseStackedBars.ts} +782 -780
- package/src/base/BaseTooltip.ts +386 -385
- package/src/base/BaseValueAxis.ts +600 -580
- package/src/base/BaseXAxis.ts +427 -0
- package/src/base/BaseYAxis.ts +389 -0
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +213 -244
- package/src/grid/gridObservables.ts +612 -545
- package/src/grid/index.ts +16 -16
- package/src/grid/plugins/Bars.ts +69 -69
- package/src/grid/plugins/BarsPN.ts +66 -66
- package/src/grid/plugins/BarsTriangle.ts +73 -73
- package/src/grid/plugins/Dots.ts +68 -68
- package/src/grid/plugins/GridLegend.ts +107 -107
- package/src/grid/plugins/GridTooltip.ts +66 -66
- package/src/grid/plugins/GroupAux.ts +1120 -1098
- package/src/grid/plugins/GroupAxis.ts +73 -97
- package/src/grid/plugins/{GridZoom.ts → GroupZoom.ts} +218 -218
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/{BarStack.ts → StackedBars.ts} +64 -64
- package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
- package/src/grid/plugins/ValueAxis.ts +94 -93
- package/src/index.ts +6 -9
- package/src/multiGrid/defaults.ts +244 -224
- package/src/multiGrid/index.ts +15 -15
- package/src/multiGrid/multiGridObservables.ts +50 -49
- package/src/multiGrid/plugins/MultiBars.ts +108 -108
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
- package/src/multiGrid/plugins/MultiDots.ts +102 -102
- package/src/multiGrid/plugins/MultiGridLegend.ts +169 -159
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
- package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
- package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
- package/src/multiGrid/plugins/MultiLines.ts +101 -101
- package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBars.ts} +106 -106
- package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
- package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
- package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +300 -298
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
- package/src/multiValue/defaults.ts +432 -0
- package/src/multiValue/index.ts +13 -0
- package/src/multiValue/multiValueObservables.ts +667 -0
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
- package/src/multiValue/plugins/RacingBars.ts +373 -0
- package/src/multiValue/plugins/RacingCounterTexts.ts +300 -0
- package/src/multiValue/plugins/RacingValueAxis.ts +115 -0
- package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -0
- package/src/multiValue/plugins/Scatter.ts +426 -0
- package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
- package/src/multiValue/plugins/XAxis.ts +108 -0
- package/src/multiValue/plugins/XYAux.ts +683 -0
- package/src/multiValue/plugins/XYAxes.ts +195 -0
- package/src/multiValue/plugins/XYAxes_legacy.ts +684 -0
- package/src/multiValue/plugins/XZoom.ts +300 -0
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +28 -28
- package/src/noneData/plugins/Tooltip.ts +374 -374
- package/src/relationship/defaults.ts +222 -0
- package/src/relationship/index.ts +5 -0
- package/src/relationship/plugins/ForceDirected.ts +1174 -0
- package/src/relationship/plugins/ForceDirectedBubbles.ts +1412 -0
- package/src/relationship/plugins/RelationshipLegend.ts +100 -0
- package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
- package/src/relationship/relationshipObservables.ts +50 -0
- package/src/series/defaults.ts +221 -206
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +636 -603
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +284 -283
- package/src/series/plugins/PieLabels.ts +640 -640
- package/src/series/plugins/Rose.ts +516 -516
- package/src/series/plugins/RoseLabels.ts +600 -600
- package/src/series/plugins/SeriesLegend.ts +107 -107
- package/src/series/plugins/SeriesTooltip.ts +66 -66
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/tree/defaults.ts +102 -78
- package/src/tree/index.ts +4 -4
- package/src/tree/plugins/TreeLegend.ts +100 -107
- package/src/tree/plugins/TreeMap.ts +341 -333
- package/src/tree/plugins/TreeTooltip.ts +66 -66
- package/src/utils/commonUtils.ts +31 -22
- package/src/utils/d3Graphics.ts +176 -174
- package/src/utils/d3Utils.ts +92 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +130 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
- package/dist/src/grid/plugins/BarStack.d.ts +0 -1
- package/dist/src/grid/plugins/GridZoom.d.ts +0 -1
- package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
- package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
- package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
- package/src/grid/plugins/RankingAxis.ts +0 -0
- package/src/multiValue/plugins/ScatterAxes.ts +0 -0
- package/src/relationship/plugins/Relationship.ts +0 -0
- /package/dist/src/{base/BaseGroupArea.d.ts → multiValue/plugins/OrdinalBubbles.d.ts} +0 -0
- /package/dist/src/{grid/plugins/Ranking.d.ts → multiValue/plugins/OrdinalXAxis.d.ts} +0 -0
- /package/dist/src/{grid/plugins/RankingAxis.d.ts → multiValue/plugins/RacingCounterAxis.d.ts} +0 -0
- /package/dist/src/multiValue/plugins/{ScatterAxes.d.ts → RankingAxis_legacy.d.ts} +0 -0
- /package/{dist/src/relationship/plugins/Relationship.d.ts → src/multiValue/plugins/OrdinalBubbles.ts} +0 -0
- /package/src/{base/BaseGroupArea.ts → multiValue/plugins/OrdinalXAxis.ts} +0 -0
- /package/src/{grid/plugins/Ranking.ts → multiValue/plugins/RacingCounterAxis.ts} +0 -0
@@ -1,14 +1,14 @@
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDatumGrid, ComputedDataGrid,
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, ComputedAxesDataGrid, ContainerPositionScaled, EventGrid, ChartParams, TransformData } from '../../lib/core-types';
|
4
4
|
import { BaseBarsParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
6
|
interface BaseBarsContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
-
|
9
|
+
computedAxesData$: Observable<ComputedAxesDataGrid>;
|
10
10
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
11
|
-
|
11
|
+
visibleComputedAxesData$: Observable<ComputedAxesDataGrid>;
|
12
12
|
seriesLabels$: Observable<string[]>;
|
13
13
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
14
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
@@ -22,7 +22,7 @@ interface BaseBarsContext {
|
|
22
22
|
height: number;
|
23
23
|
}>;
|
24
24
|
gridHighlight$: Observable<ComputedDatumGrid[]>;
|
25
|
-
gridContainerPosition$: Observable<
|
25
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
26
26
|
isSeriesSeprate$: Observable<boolean>;
|
27
27
|
event$: Subject<EventGrid>;
|
28
28
|
}
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDatumGrid, ComputedDataGrid,
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, ComputedAxesDataGrid, DataFormatterTypeMap, EventGrid, ChartParams, ContainerPositionScaled, TransformData } from '../../lib/core-types';
|
4
4
|
import { BaseBarsTriangleParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
6
|
interface BaseBarsContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
-
|
9
|
+
computedAxesData$: Observable<ComputedAxesDataGrid>;
|
10
10
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
11
|
-
|
11
|
+
visibleComputedAxesData$: Observable<ComputedAxesDataGrid>;
|
12
12
|
fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>;
|
13
13
|
seriesLabels$: Observable<string[]>;
|
14
14
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
@@ -22,7 +22,7 @@ interface BaseBarsContext {
|
|
22
22
|
height: number;
|
23
23
|
}>;
|
24
24
|
gridHighlight$: Observable<ComputedDatumGrid[]>;
|
25
|
-
gridContainerPosition$: Observable<
|
25
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
26
26
|
isSeriesSeprate$: Observable<boolean>;
|
27
27
|
event$: Subject<EventGrid>;
|
28
28
|
}
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDatumGrid, ComputedDataGrid,
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, ComputedAxesDataGrid, EventGrid, ChartParams, ContainerPositionScaled, TransformData } from '../../lib/core-types';
|
4
4
|
import { BaseDotsParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
6
|
interface BaseDotsContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
-
|
9
|
+
computedAxesData$: Observable<ComputedAxesDataGrid>;
|
10
10
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
11
|
-
|
11
|
+
visibleComputedAxesData$: Observable<ComputedAxesDataGrid>;
|
12
12
|
seriesLabels$: Observable<string[]>;
|
13
13
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
14
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
@@ -22,7 +22,7 @@ interface BaseDotsContext {
|
|
22
22
|
height: number;
|
23
23
|
}>;
|
24
24
|
gridHighlight$: Observable<ComputedDatumGrid[]>;
|
25
|
-
gridContainerPosition$: Observable<
|
25
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
26
26
|
event$: Subject<EventGrid>;
|
27
27
|
}
|
28
28
|
export declare const createBaseDots: BasePluginFn<BaseDotsContext>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
|
-
import { ComputedDataGrid,
|
2
|
+
import { ComputedDataGrid, ContainerPositionScaled, DataFormatterGrid, ChartParams, TransformData } from '../../lib/core-types';
|
3
3
|
import { BaseGroupAxisParams } from '../../lib/plugins-basic-types';
|
4
4
|
import { BasePluginFn } from './types';
|
5
5
|
import * as d3 from 'd3';
|
@@ -15,7 +15,7 @@ interface BaseGroupAxisContext {
|
|
15
15
|
width: number;
|
16
16
|
height: number;
|
17
17
|
}>;
|
18
|
-
gridContainerPosition$: Observable<
|
18
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
19
19
|
isSeriesSeprate$: Observable<boolean>;
|
20
20
|
textSizePx$: Observable<number>;
|
21
21
|
}
|
@@ -5,7 +5,7 @@ import { BaseLegendParams } from '../../lib/plugins-basic-types';
|
|
5
5
|
import * as d3 from 'd3';
|
6
6
|
interface BaseLegendContext {
|
7
7
|
rootSelection: d3.Selection<any, unknown, any, unknown>;
|
8
|
-
|
8
|
+
legendLabels$: Observable<string[]>;
|
9
9
|
fullParams$: Observable<BaseLegendParams>;
|
10
10
|
layout$: Observable<Layout>;
|
11
11
|
fullChartParams$: Observable<ChartParams>;
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDatumGrid, ComputedDataGrid,
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, ComputedAxesDataGrid, DataFormatterGrid, EventGrid, ContainerPositionScaled, ChartParams, Layout, TransformData } from '../../lib/core-types';
|
4
4
|
import { BaseLineAreasParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
6
|
interface BaseLineAreasContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
-
|
9
|
+
computedAxesData$: Observable<ComputedAxesDataGrid>;
|
10
10
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
11
|
-
|
11
|
+
visibleComputedAxesData$: Observable<ComputedAxesDataGrid>;
|
12
12
|
seriesLabels$: Observable<string[]>;
|
13
13
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
14
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
@@ -22,8 +22,8 @@ interface BaseLineAreasContext {
|
|
22
22
|
height: number;
|
23
23
|
}>;
|
24
24
|
gridHighlight$: Observable<ComputedDatumGrid[]>;
|
25
|
-
gridContainerPosition$: Observable<
|
26
|
-
allContainerPosition$: Observable<
|
25
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
26
|
+
allContainerPosition$: Observable<ContainerPositionScaled[]>;
|
27
27
|
layout$: Observable<Layout>;
|
28
28
|
event$: Subject<EventGrid>;
|
29
29
|
}
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDatumGrid, ComputedDataGrid,
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, ComputedAxesDataGrid, DataFormatterGrid, EventGrid, ContainerPositionScaled, ChartParams, Layout, TransformData } from '../../lib/core-types';
|
4
4
|
import { BaseLinesParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
6
|
interface BaseLinesContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
-
|
9
|
+
computedAxesData$: Observable<ComputedAxesDataGrid>;
|
10
10
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
11
|
-
|
11
|
+
visibleComputedAxesData$: Observable<ComputedAxesDataGrid>;
|
12
12
|
seriesLabels$: Observable<string[]>;
|
13
13
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
14
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
@@ -22,8 +22,8 @@ interface BaseLinesContext {
|
|
22
22
|
height: number;
|
23
23
|
}>;
|
24
24
|
gridHighlight$: Observable<ComputedDatumGrid[]>;
|
25
|
-
gridContainerPosition$: Observable<
|
26
|
-
allContainerPosition$: Observable<
|
25
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
26
|
+
allContainerPosition$: Observable<ContainerPositionScaled[]>;
|
27
27
|
layout$: Observable<Layout>;
|
28
28
|
event$: Subject<EventGrid>;
|
29
29
|
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { Observable, Subject } from 'rxjs';
|
2
|
+
import { BasePluginFn } from './types';
|
3
|
+
import { ComputedDatumMultiValue, ComputedDataMultiValue, ContainerPositionScaled, ContainerSize, EventMultiValue, ChartParams } from '../../lib/core-types';
|
4
|
+
import { BaseRacingBarsParams } from '../../lib/plugins-basic-types';
|
5
|
+
import * as d3 from 'd3';
|
6
|
+
interface BaseRacingBarsContext {
|
7
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
8
|
+
computedData$: Observable<ComputedDataMultiValue>;
|
9
|
+
visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>;
|
10
|
+
CategoryDataMap$: Observable<Map<string, ComputedDatumMultiValue[]>>;
|
11
|
+
fullParams$: Observable<BaseRacingBarsParams>;
|
12
|
+
fullChartParams$: Observable<ChartParams>;
|
13
|
+
highlight$: Observable<ComputedDatumMultiValue[]>;
|
14
|
+
rankingItemHeight$: Observable<number>;
|
15
|
+
rankingScaleList$: Observable<d3.ScalePoint<string>[]>;
|
16
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
17
|
+
containerSize$: Observable<ContainerSize>;
|
18
|
+
xScale$: Observable<(n: number) => number>;
|
19
|
+
isCategorySeprate$: Observable<boolean>;
|
20
|
+
event$: Subject<EventMultiValue>;
|
21
|
+
}
|
22
|
+
export declare const createBaseRacingBars: BasePluginFn<BaseRacingBarsContext>;
|
23
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { ChartParams, ComputedDatumMultiValue, ComputedDataMultiValue, ContainerSize, ContainerPositionScaled, DataFormatterMultiValue } from '../../lib/core-types';
|
3
|
+
import { BaseRacingLabelsParams } from '../../lib/plugins-basic-types';
|
4
|
+
import { BasePluginFn } from './types';
|
5
|
+
import * as d3 from 'd3';
|
6
|
+
interface BaseRacingAxisContext {
|
7
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
8
|
+
computedData$: Observable<ComputedDataMultiValue>;
|
9
|
+
visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>;
|
10
|
+
rankingScaleList$: Observable<Array<d3.ScalePoint<string>>>;
|
11
|
+
xScale$: Observable<(n: number) => number>;
|
12
|
+
fullParams$: Observable<BaseRacingLabelsParams>;
|
13
|
+
fullDataFormatter$: Observable<DataFormatterMultiValue>;
|
14
|
+
fullChartParams$: Observable<ChartParams>;
|
15
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
16
|
+
containerSize$: Observable<ContainerSize>;
|
17
|
+
isCategorySeprate$: Observable<boolean>;
|
18
|
+
}
|
19
|
+
export declare const createBaseRacingLabels: BasePluginFn<BaseRacingAxisContext>;
|
20
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { ChartParams, ComputedDatumMultiValue, ComputedDataMultiValue, ContainerSize, ContainerPositionScaled } from '../../lib/core-types';
|
3
|
+
import { BaseRacingValueLabelsParams } from '../../lib/plugins-basic-types';
|
4
|
+
import { BasePluginFn } from './types';
|
5
|
+
import * as d3 from 'd3';
|
6
|
+
interface BaseRacingAxisContext {
|
7
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
8
|
+
computedData$: Observable<ComputedDataMultiValue>;
|
9
|
+
visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>;
|
10
|
+
rankingScaleList$: Observable<Array<d3.ScalePoint<string>>>;
|
11
|
+
xScale$: Observable<(n: number) => number>;
|
12
|
+
computedRankingAmount$: Observable<number>;
|
13
|
+
fullParams$: Observable<BaseRacingValueLabelsParams>;
|
14
|
+
fullChartParams$: Observable<ChartParams>;
|
15
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
16
|
+
containerSize$: Observable<ContainerSize>;
|
17
|
+
isCategorySeprate$: Observable<boolean>;
|
18
|
+
}
|
19
|
+
export declare const createBaseRacingValueLabels: BasePluginFn<BaseRacingAxisContext>;
|
20
|
+
export {};
|
@@ -1,18 +1,18 @@
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDatumGrid, ComputedDataGrid,
|
4
|
-
import {
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, ComputedAxesDataGrid, DataFormatterGrid, EventGrid, ChartParams, ContainerPositionScaled, TransformData } from '../../lib/core-types';
|
4
|
+
import { BaseStackedBarsParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
|
-
interface
|
6
|
+
interface BaseStackedBarsContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
-
|
9
|
+
computedAxesData$: Observable<ComputedAxesDataGrid>;
|
10
10
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
11
|
-
|
11
|
+
visibleComputedAxesData$: Observable<ComputedAxesDataGrid>;
|
12
12
|
seriesLabels$: Observable<string[]>;
|
13
13
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
14
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
15
|
-
fullParams$: Observable<
|
15
|
+
fullParams$: Observable<BaseStackedBarsParams>;
|
16
16
|
fullDataFormatter$: Observable<DataFormatterGrid>;
|
17
17
|
fullChartParams$: Observable<ChartParams>;
|
18
18
|
gridAxesTransform$: Observable<TransformData>;
|
@@ -23,9 +23,9 @@ interface BaseBarStackContext {
|
|
23
23
|
height: number;
|
24
24
|
}>;
|
25
25
|
gridHighlight$: Observable<ComputedDatumGrid[]>;
|
26
|
-
gridContainerPosition$: Observable<
|
26
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
27
27
|
isSeriesSeprate$: Observable<boolean>;
|
28
28
|
event$: Subject<EventGrid>;
|
29
29
|
}
|
30
|
-
export declare const
|
30
|
+
export declare const createBaseStackedBars: BasePluginFn<BaseStackedBarsContext>;
|
31
31
|
export {};
|
@@ -1,22 +1,20 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
2
|
import { BasePluginFn } from './types';
|
3
|
-
import { ComputedDataGrid, DataFormatterGrid, ChartParams,
|
3
|
+
import { ComputedDataGrid, DataFormatterGrid, ChartParams, ContainerPositionScaled, ContainerSize, TransformData } from '../../lib/core-types';
|
4
4
|
import { BaseValueAxisParams } from '../../lib/plugins-basic-types';
|
5
5
|
import * as d3 from 'd3';
|
6
|
-
interface
|
6
|
+
interface BaseValueAxisContext {
|
7
7
|
selection: d3.Selection<any, unknown, any, unknown>;
|
8
8
|
computedData$: Observable<ComputedDataGrid>;
|
9
|
+
filteredMinMaxValue$: Observable<[number, number]>;
|
9
10
|
fullParams$: Observable<BaseValueAxisParams>;
|
10
11
|
fullDataFormatter$: Observable<DataFormatterGrid>;
|
11
12
|
fullChartParams$: Observable<ChartParams>;
|
12
13
|
gridAxesTransform$: Observable<TransformData>;
|
13
14
|
gridAxesReverseTransform$: Observable<TransformData>;
|
14
|
-
|
15
|
-
|
16
|
-
height: number;
|
17
|
-
}>;
|
18
|
-
gridContainerPosition$: Observable<GridContainerPosition[]>;
|
15
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
16
|
+
gridAxesSize$: Observable<ContainerSize>;
|
19
17
|
isSeriesSeprate$: Observable<boolean>;
|
20
18
|
}
|
21
|
-
export declare const createBaseValueAxis: BasePluginFn<
|
19
|
+
export declare const createBaseValueAxis: BasePluginFn<BaseValueAxisContext>;
|
22
20
|
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { ChartParams, ContainerSize, ComputedDataMultiValue, ContainerPositionScaled, DataFormatterMultiValue } from '../../lib/core-types';
|
3
|
+
import { BaseXAxisParams } from '../../lib/plugins-basic-types';
|
4
|
+
import { BasePluginFn } from './types';
|
5
|
+
import * as d3 from 'd3';
|
6
|
+
interface BaseXAxisContext {
|
7
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
8
|
+
position$: Observable<'top' | 'bottom'>;
|
9
|
+
transitionDuration$: Observable<number>;
|
10
|
+
computedData$: Observable<ComputedDataMultiValue>;
|
11
|
+
fullParams$: Observable<BaseXAxisParams>;
|
12
|
+
fullDataFormatter$: Observable<DataFormatterMultiValue>;
|
13
|
+
fullChartParams$: Observable<ChartParams>;
|
14
|
+
isCategorySeprate$: Observable<boolean>;
|
15
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
16
|
+
containerSize$: Observable<ContainerSize>;
|
17
|
+
xScale$: Observable<d3.ScaleLinear<number, number>>;
|
18
|
+
}
|
19
|
+
export declare const createBaseXAxis: BasePluginFn<BaseXAxisContext>;
|
20
|
+
export {};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { ChartParams, ComputedDataMultiValue, ContainerPositionScaled, ContainerSize, DataFormatterMultiValue } from '../../lib/core-types';
|
3
|
+
import { BaseYAxisParams } from '../../lib/plugins-basic-types';
|
4
|
+
import { BasePluginFn } from './types';
|
5
|
+
import * as d3 from 'd3';
|
6
|
+
interface BaseYAxisContext {
|
7
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
8
|
+
computedData$: Observable<ComputedDataMultiValue>;
|
9
|
+
fullParams$: Observable<BaseYAxisParams>;
|
10
|
+
fullDataFormatter$: Observable<DataFormatterMultiValue>;
|
11
|
+
fullChartParams$: Observable<ChartParams>;
|
12
|
+
isCategorySeprate$: Observable<boolean>;
|
13
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
14
|
+
containerSize$: Observable<ContainerSize>;
|
15
|
+
yScale$: Observable<d3.ScaleLinear<number, number>>;
|
16
|
+
}
|
17
|
+
export declare const createBaseYAxis: BasePluginFn<BaseYAxisContext>;
|
18
|
+
export {};
|
@@ -1,16 +1,16 @@
|
|
1
|
-
import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams,
|
1
|
+
import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, StackedBarsParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, StackedValueAxisParams, GridTooltipParams, GroupZoomParams, GridLegendParams } from '../../lib/plugins-basic-types';
|
2
2
|
|
3
3
|
export declare const DEFAULT_LINES_PARAMS: LinesParams;
|
4
4
|
export declare const DEFAULT_LINE_AREAS_PARAMS: LineAreasParams;
|
5
5
|
export declare const DEFAULT_DOTS_PARAMS: DotsParams;
|
6
|
-
export declare const
|
6
|
+
export declare const DEFAULT_GROUP_AUX_PARAMS: GroupAuxParams;
|
7
7
|
export declare const DEFAULT_BARS_PARAMS: BarsParams;
|
8
8
|
export declare const DEFAULT_BARS_DIVERGING_PARAMS: BarsParams;
|
9
|
-
export declare const
|
9
|
+
export declare const DEFAULT_STACKED_BARS_PARAMS: StackedBarsParams;
|
10
10
|
export declare const DEFAULT_BARS_TRIANGLE_PARAMS: BarsTriangleParams;
|
11
11
|
export declare const DEFAULT_GROUP_AXIS_PARAMS: GroupAxisParams;
|
12
12
|
export declare const DEFAULT_VALUE_AXIS_PARAMS: ValueAxisParams;
|
13
|
-
export declare const
|
14
|
-
export declare const
|
13
|
+
export declare const DEFAULT_STACKED_VALUE_AXIS_PARAMS: StackedValueAxisParams;
|
14
|
+
export declare const DEFAULT_GROUP_ZOOM_PARAMS: GroupZoomParams;
|
15
15
|
export declare const DEFAULT_GRID_LEGEND_PARAMS: GridLegendParams;
|
16
16
|
export declare const DEFAULT_GRID_TOOLTIP_PARAMS: GridTooltipParams;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
|
-
import { ChartParams, DataFormatterGrid, ComputedDataGrid, TransformData,
|
2
|
+
import { ChartParams, DataFormatterGrid, ComputedDataGrid, ComputedDatumGrid, TransformData, ContainerPositionScaled, Layout } from '../../lib/core-types';
|
3
3
|
import * as d3 from 'd3';
|
4
4
|
export declare const gridSelectionsObservable: ({ selection, pluginName, clipPathID, seriesLabels$, gridContainerPosition$, gridAxesTransform$, gridGraphicTransform$ }: {
|
5
5
|
selection: d3.Selection<any, unknown, any, unknown>;
|
6
6
|
pluginName: string;
|
7
7
|
clipPathID: string;
|
8
8
|
seriesLabels$: Observable<string[]>;
|
9
|
-
gridContainerPosition$: Observable<
|
9
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
10
10
|
gridAxesTransform$: Observable<TransformData>;
|
11
11
|
gridGraphicTransform$: Observable<TransformData>;
|
12
12
|
}) => {
|
@@ -15,6 +15,13 @@ export declare const gridSelectionsObservable: ({ selection, pluginName, clipPat
|
|
15
15
|
defsSelection$: Observable<d3.Selection<SVGDefsElement, string, any, unknown>>;
|
16
16
|
graphicGSelection$: Observable<d3.Selection<SVGGElement, string, any, unknown>>;
|
17
17
|
};
|
18
|
+
export declare const gridContainerSelectionsObservable: ({ selection, pluginName, computedData$, gridContainerPosition$, isSeriesSeprate$ }: {
|
19
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
20
|
+
pluginName: string;
|
21
|
+
computedData$: Observable<ComputedDataGrid>;
|
22
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
23
|
+
isSeriesSeprate$: Observable<boolean>;
|
24
|
+
}) => Observable<d3.Selection<SVGGElement, ComputedDatumGrid[], any, unknown>>;
|
18
25
|
export declare const gridGroupPositionFnObservable: ({ fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
|
19
26
|
fullDataFormatter$: Observable<DataFormatterGrid>;
|
20
27
|
gridAxesSize$: Observable<{
|
@@ -23,13 +30,13 @@ export declare const gridGroupPositionFnObservable: ({ fullDataFormatter$, gridA
|
|
23
30
|
}>;
|
24
31
|
computedData$: Observable<ComputedDataGrid>;
|
25
32
|
fullChartParams$: Observable<ChartParams>;
|
26
|
-
gridContainerPosition$: Observable<
|
33
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
27
34
|
layout$: Observable<Layout>;
|
28
35
|
}) => Observable<(event: any) => {
|
29
36
|
groupIndex: number;
|
30
37
|
groupLabel: string;
|
31
38
|
}>;
|
32
|
-
export declare const
|
39
|
+
export declare const gridGroupPositionObservable: ({ rootSelection, fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
|
33
40
|
rootSelection: d3.Selection<any, unknown, any, unknown>;
|
34
41
|
fullDataFormatter$: Observable<DataFormatterGrid>;
|
35
42
|
gridAxesSize$: Observable<{
|
@@ -38,7 +45,7 @@ export declare const gridGroupPosition: ({ rootSelection, fullDataFormatter$, gr
|
|
38
45
|
}>;
|
39
46
|
computedData$: Observable<ComputedDataGrid>;
|
40
47
|
fullChartParams$: Observable<ChartParams>;
|
41
|
-
gridContainerPosition$: Observable<
|
48
|
+
gridContainerPosition$: Observable<ContainerPositionScaled[]>;
|
42
49
|
layout$: Observable<Layout>;
|
43
50
|
}) => Observable<{
|
44
51
|
groupIndex: number;
|
package/dist/src/grid/index.d.ts
CHANGED
@@ -3,13 +3,13 @@ export { Lines } from './plugins/Lines';
|
|
3
3
|
export { LineAreas } from './plugins/LineAreas';
|
4
4
|
export { Bars } from './plugins/Bars';
|
5
5
|
export { BarsPN } from './plugins/BarsPN';
|
6
|
-
export {
|
6
|
+
export { StackedBars } from './plugins/StackedBars';
|
7
7
|
export { BarsTriangle } from './plugins/BarsTriangle';
|
8
8
|
export { Dots } from './plugins/Dots';
|
9
9
|
export { GridLegend } from './plugins/GridLegend';
|
10
10
|
export { GroupAxis } from './plugins/GroupAxis';
|
11
11
|
export { ValueAxis } from './plugins/ValueAxis';
|
12
|
-
export {
|
12
|
+
export { StackedValueAxis } from './plugins/StackedValueAxis';
|
13
13
|
export { GridTooltip } from './plugins/GridTooltip';
|
14
|
-
export {
|
14
|
+
export { GroupZoom } from './plugins/GroupZoom';
|
15
15
|
export { GroupAux } from './plugins/GroupAux';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const GroupZoom: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GroupZoom", import('@orbcharts/plugins-basic-types').GroupZoomParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const StackedBars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "StackedBars", import('@orbcharts/plugins-basic-types').StackedBarsParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const StackedValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "StackedValueAxis", import('@orbcharts/plugins-basic-types').StackedValueAxisParams>;
|
package/dist/src/index.d.ts
CHANGED
@@ -1,15 +1,15 @@
|
|
1
|
-
import { MultiGridLegendParams, MultiBarsParams,
|
1
|
+
import { MultiGridLegendParams, MultiBarsParams, MultiStackedBarsParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiGridTooltipParams, MultiValueAxisParams, MultiStackedValueAxisParams, OverlappingValueAxesParams, OverlappingStackedValueAxesParams } from '../../lib/plugins-basic-types';
|
2
2
|
|
3
3
|
export declare const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams;
|
4
4
|
export declare const DEFAULT_MULTI_GROUP_AXIS_PARAMS: MultiGroupAxisParams;
|
5
5
|
export declare const DEFAULT_MULTI_VALUE_AXIS_PARAMS: MultiValueAxisParams;
|
6
|
-
export declare const
|
6
|
+
export declare const DEFAULT_MULTI_STACKED_VALUE_AXIS_PARAMS: MultiStackedValueAxisParams;
|
7
7
|
export declare const DEFAULT_MULTI_BARS_PARAMS: MultiBarsParams;
|
8
|
-
export declare const
|
8
|
+
export declare const DEFAULT_MULTI_STACKED_BARS_PARAMS: MultiStackedBarsParams;
|
9
9
|
export declare const DEFAULT_MULTI_BARS_TRIANGLE_PARAMS: MultiBarsTriangleParams;
|
10
10
|
export declare const DEFAULT_MULTI_LINES_PARAMS: MultiLinesParams;
|
11
11
|
export declare const DEFAULT_MULTI_LINE_AREAS_PARAMS: MultiLineAreasParams;
|
12
12
|
export declare const DEFAULT_MULTI_DOTS_PARAMS: MultiDotsParams;
|
13
13
|
export declare const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams;
|
14
|
-
export declare const
|
14
|
+
export declare const DEFAULT_OVERLAPPING_STACKED_VALUE_AXES_PARAMS: OverlappingStackedValueAxesParams;
|
15
15
|
export declare const DEFAULT_MULTI_GRID_TOOLTIP_PARAMS: MultiGridTooltipParams;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
export * from './defaults';
|
2
2
|
export { MultiGridLegend } from './plugins/MultiGridLegend';
|
3
3
|
export { MultiBars } from './plugins/MultiBars';
|
4
|
-
export {
|
4
|
+
export { MultiStackedBars } from './plugins/MultiStackedBars';
|
5
5
|
export { MultiBarsTriangle } from './plugins/MultiBarsTriangle';
|
6
6
|
export { MultiLines } from './plugins/MultiLines';
|
7
7
|
export { MultiLineAreas } from './plugins/MultiLineAreas';
|
@@ -9,6 +9,6 @@ export { MultiDots } from './plugins/MultiDots';
|
|
9
9
|
export { MultiGroupAxis } from './plugins/MultiGroupAxis';
|
10
10
|
export { MultiValueAxis } from './plugins/MultiValueAxis';
|
11
11
|
export { MultiGridTooltip } from './plugins/MultiGridTooltip';
|
12
|
-
export {
|
12
|
+
export { MultiStackedValueAxis } from './plugins/MultiStackedValueAxis';
|
13
13
|
export { OverlappingValueAxes } from './plugins/OverlappingValueAxes';
|
14
|
-
export {
|
14
|
+
export { OverlappingStackedValueAxes } from './plugins/OverlappingStackedValueAxes';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const MultiStackedBars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiStackedBars", import('@orbcharts/plugins-basic-types').MultiStackedBarsParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const MultiStackedValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiStackedValueAxis", import('@orbcharts/plugins-basic-types').MultiValueAxisParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const OverlappingStackedValueAxes: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "OverlappingStackedValueAxes", import('@orbcharts/plugins-basic-types').OverlappingStackedValueAxesParams>;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { MultiValueLegendParams, MultiValueTooltipParams, RacingBarsParams, RacingCounterTextsParams, RacingValueAxisParams, ScatterParams, ScatterBubblesParams, XAxisParams, XYAuxParams, XYAxesParams, XZoomParams } from '../../lib/plugins-basic-types';
|
2
|
+
|
3
|
+
export declare const DEFAULT_MULTI_VALUE_LEGEND_PARAMS: MultiValueLegendParams;
|
4
|
+
export declare const DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS: MultiValueTooltipParams;
|
5
|
+
export declare const DEFAULT_RACING_BARS_PARAMS: RacingBarsParams;
|
6
|
+
export declare const DEFAULT_RACING_COUNTER_TEXTS_PARAMS: RacingCounterTextsParams;
|
7
|
+
export declare const DEFAULT_RACING_VALUE_AXIS_PARAMS: RacingValueAxisParams;
|
8
|
+
export declare const DEFAULT_SCATTER_PARAMS: ScatterParams;
|
9
|
+
export declare const DEFAULT_SCATTER_BUBBLES_PARAMS: ScatterBubblesParams;
|
10
|
+
export declare const DEFAULT_X_AXIS_PARAMS: XAxisParams;
|
11
|
+
export declare const DEFAULT_X_Y_AUX_PARAMS: XYAuxParams;
|
12
|
+
export declare const DEFAULT_X_Y_AXES_PARAMS: XYAxesParams;
|
13
|
+
export declare const DEFAULT_X_ZOOM_PARAMS: XZoomParams;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
export * from './defaults';
|
2
|
+
export { MultiValueLegend } from './plugins/MultiValueLegend';
|
3
|
+
export { MultiValueTooltip } from './plugins/MultiValueTooltip';
|
4
|
+
export { RacingBars } from './plugins/RacingBars';
|
5
|
+
export { RacingCounterTexts } from './plugins/RacingCounterTexts';
|
6
|
+
export { RacingValueAxis } from './plugins/RacingValueAxis';
|
7
|
+
export { Scatter } from './plugins/Scatter';
|
8
|
+
export { ScatterBubbles } from './plugins/ScatterBubbles';
|
9
|
+
export { XAxis } from './plugins/XAxis';
|
10
|
+
export { XYAux } from './plugins/XYAux';
|
11
|
+
export { XYAxes } from './plugins/XYAxes';
|
12
|
+
export { XZoom } from './plugins/XZoom';
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { DataFormatterMultiValue, ComputedDataMultiValue, ComputedDatumMultiValue, ComputedXYDatumMultiValue, TransformData, ContainerSize, ContainerPositionScaled, Layout } from '../../lib/core-types';
|
3
|
+
import * as d3 from 'd3';
|
4
|
+
export declare const multiValueSelectionsObservable: ({ selection, pluginName, clipPathID, categoryLabels$, containerPosition$, graphicTransform$ }: {
|
5
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
6
|
+
pluginName: string;
|
7
|
+
clipPathID: string;
|
8
|
+
categoryLabels$: Observable<string[]>;
|
9
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
10
|
+
graphicTransform$: Observable<TransformData>;
|
11
|
+
}) => {
|
12
|
+
categorySelection$: Observable<d3.Selection<SVGGElement, string, any, unknown>>;
|
13
|
+
axesSelection$: Observable<d3.Selection<SVGGElement, string, any, unknown>>;
|
14
|
+
defsSelection$: Observable<d3.Selection<SVGDefsElement, string, any, unknown>>;
|
15
|
+
graphicGSelection$: Observable<d3.Selection<SVGGElement, string, any, unknown>>;
|
16
|
+
};
|
17
|
+
export declare const multiValueContainerSelectionsObservable: ({ selection, pluginName, clipPathID, computedData$, containerPosition$, isCategorySeprate$ }: {
|
18
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
19
|
+
pluginName: string;
|
20
|
+
clipPathID: string | null;
|
21
|
+
computedData$: Observable<ComputedDataMultiValue>;
|
22
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
23
|
+
isCategorySeprate$: Observable<boolean>;
|
24
|
+
}) => Observable<d3.Selection<SVGGElement, ComputedDatumMultiValue[], any, unknown>>;
|
25
|
+
export declare const multiValueXYPositionObservable: ({ rootSelection, fullDataFormatter$, filteredXYMinMaxData$, containerPosition$, layout$ }: {
|
26
|
+
rootSelection: d3.Selection<any, unknown, any, unknown>;
|
27
|
+
fullDataFormatter$: Observable<DataFormatterMultiValue>;
|
28
|
+
filteredXYMinMaxData$: Observable<{
|
29
|
+
minXDatum: ComputedXYDatumMultiValue;
|
30
|
+
maxXDatum: ComputedXYDatumMultiValue;
|
31
|
+
minYDatum: ComputedXYDatumMultiValue;
|
32
|
+
maxYDatum: ComputedXYDatumMultiValue;
|
33
|
+
}>;
|
34
|
+
containerPosition$: Observable<ContainerPositionScaled[]>;
|
35
|
+
layout$: Observable<Layout>;
|
36
|
+
}) => Observable<{
|
37
|
+
x: number;
|
38
|
+
y: number;
|
39
|
+
xValue: number;
|
40
|
+
yValue: number;
|
41
|
+
}>;
|
42
|
+
export declare const computedRankingAmountObservable: ({ containerSize$, visibleComputedData$, textSizePx$, rankingAmount$ }: {
|
43
|
+
containerSize$: Observable<ContainerSize>;
|
44
|
+
visibleComputedData$: Observable<ComputedDatumMultiValue[][]>;
|
45
|
+
textSizePx$: Observable<number>;
|
46
|
+
rankingAmount$: Observable<"auto" | number>;
|
47
|
+
}) => Observable<number>;
|
48
|
+
export declare const rankingItemHeightObservable: ({ containerSize$, textSizePx$, computedRankingAmount$ }: {
|
49
|
+
containerSize$: Observable<ContainerSize>;
|
50
|
+
textSizePx$: Observable<number>;
|
51
|
+
computedRankingAmount$: Observable<number>;
|
52
|
+
}) => Observable<number>;
|
53
|
+
export declare const rankingScaleListObservable: ({ visibleComputedRankingData$, rankingItemHeight$ }: {
|
54
|
+
visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>;
|
55
|
+
rankingItemHeight$: Observable<number>;
|
56
|
+
}) => Observable<d3.ScalePoint<string>[]>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const MultiValueLegend: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "MultiValueLegend", import('@orbcharts/plugins-basic-types').MultiValueLegendParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const MultiValueTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "MultiValueTooltip", import('@orbcharts/plugins-basic-types').MultiValueTooltipParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const RacingBars: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "RacingBars", import('@orbcharts/plugins-basic-types/dist/src/types/MultiValuePluginParams').RacingBarsParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const RacingValueAxis: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiValue", "RacingValueAxis", import('@orbcharts/plugins-basic-types').RacingValueAxisParams>;
|