@orbcharts/plugins-basic 3.0.0-alpha.38 → 3.0.0-alpha.40
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/dist/orbcharts-plugins-basic/src/base/BaseBarStack.d.ts +1 -1
- package/dist/orbcharts-plugins-basic/src/base/BaseBars.d.ts +1 -1
- package/dist/orbcharts-plugins-basic/src/base/BaseBarsTriangle.d.ts +1 -1
- package/dist/orbcharts-plugins-basic/src/base/BaseDots.d.ts +1 -1
- package/dist/orbcharts-plugins-basic/src/base/BaseLegend.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/base/BaseLineAreas.d.ts +30 -0
- package/dist/orbcharts-plugins-basic/src/base/BaseLines.d.ts +1 -1
- package/dist/orbcharts-plugins-basic/src/grid/defaults.d.ts +2 -1
- package/dist/orbcharts-plugins-basic/src/grid/gridObservables.d.ts +2 -2
- package/dist/orbcharts-plugins-basic/src/grid/index.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/grid/plugins/LineAreas.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/grid/types.d.ts +5 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/types.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/series/types.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/tree/types.d.ts +2 -2
- package/dist/orbcharts-plugins-basic/src/utils/orbchartsUtils.d.ts +7 -2
- package/dist/orbcharts-plugins-basic.es.js +7449 -7078
- package/dist/orbcharts-plugins-basic.umd.js +12 -9
- package/package.json +2 -2
- package/src/base/BaseBarStack.ts +7 -3
- package/src/base/BaseBars.ts +7 -3
- package/src/base/BaseBarsTriangle.ts +52 -135
- package/src/base/BaseDots.ts +7 -3
- package/src/base/BaseLegend.ts +16 -1
- package/src/base/BaseLineAreas.ts +625 -0
- package/src/base/BaseLines.ts +12 -12
- package/src/base/BaseValueAxis.ts +0 -1
- package/src/grid/defaults.ts +7 -0
- package/src/grid/gridObservables.ts +5 -5
- package/src/grid/index.ts +1 -0
- package/src/grid/plugins/BarStack.ts +1 -1
- package/src/grid/plugins/Bars.ts +1 -1
- package/src/grid/plugins/BarsDiverging.ts +1 -1
- package/src/grid/plugins/BarsTriangle.ts +1 -1
- package/src/grid/plugins/Dots.ts +1 -1
- package/src/grid/plugins/GroupAux.ts +8 -0
- package/src/grid/plugins/LineAreas.ts +37 -0
- package/src/grid/plugins/Lines.ts +1 -1
- package/src/grid/plugins/ScalingArea.ts +11 -7
- package/src/grid/types.ts +6 -1
- package/src/multiGrid/defaults.ts +2 -1
- package/src/multiGrid/multiGridObservables.ts +6 -6
- package/src/multiGrid/plugins/MultiBarStack.ts +1 -1
- package/src/multiGrid/plugins/MultiBars.ts +1 -1
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +1 -1
- package/src/multiGrid/plugins/MultiDots.ts +1 -1
- package/src/multiGrid/plugins/MultiLines.ts +1 -1
- package/src/multiGrid/types.ts +1 -0
- package/src/noneData/defaults.ts +21 -7
- package/src/series/defaults.ts +1 -0
- package/src/series/types.ts +1 -0
- package/src/tree/defaults.ts +1 -0
- package/src/tree/plugins/TreeMap.ts +7 -5
- package/src/tree/types.ts +2 -2
- package/src/utils/orbchartsUtils.ts +22 -8
- package/tsconfig.json +4 -1
@@ -11,7 +11,7 @@ interface BaseBarStackContext {
|
|
11
11
|
selection: d3.Selection<any, unknown, any, unknown>;
|
12
12
|
computedData$: Observable<ComputedDataGrid>;
|
13
13
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
14
|
-
|
14
|
+
existSeriesLabels$: Observable<string[]>;
|
15
15
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
16
16
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
17
17
|
fullParams$: Observable<BaseBarStackParams>;
|
@@ -12,7 +12,7 @@ interface BaseBarsContext {
|
|
12
12
|
selection: d3.Selection<any, unknown, any, unknown>;
|
13
13
|
computedData$: Observable<ComputedDataGrid>;
|
14
14
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
15
|
-
|
15
|
+
existSeriesLabels$: Observable<string[]>;
|
16
16
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
17
17
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
18
18
|
fullParams$: Observable<BaseBarsParams>;
|
@@ -12,7 +12,7 @@ interface BaseBarsContext {
|
|
12
12
|
selection: d3.Selection<any, unknown, any, unknown>;
|
13
13
|
computedData$: Observable<ComputedDataGrid>;
|
14
14
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
15
|
-
|
15
|
+
existSeriesLabels$: Observable<string[]>;
|
16
16
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
17
17
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
18
18
|
fullParams$: Observable<BaseBarsTriangleParams>;
|
@@ -13,7 +13,7 @@ interface BaseDotsContext {
|
|
13
13
|
selection: d3.Selection<any, unknown, any, unknown>;
|
14
14
|
computedData$: Observable<ComputedDataGrid>;
|
15
15
|
visibleComputedData$: Observable<ComputedDatumGrid[][]>;
|
16
|
-
|
16
|
+
existSeriesLabels$: Observable<string[]>;
|
17
17
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
18
18
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
19
19
|
fullParams$: Observable<BaseDotsParams>;
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { Observable, Subject } from 'rxjs';
|
2
|
+
import { BasePluginFn } from './types';
|
3
|
+
import { ComputedDatumGrid, ComputedDataGrid, DataFormatterGrid, EventGrid, ContainerPosition, ChartParams, Layout, TransformData } from '@orbcharts/core';
|
4
|
+
import * as d3 from 'd3';
|
5
|
+
export interface BaseLineAreasParams {
|
6
|
+
lineCurve: string;
|
7
|
+
linearGradientOpacity: [number, number];
|
8
|
+
}
|
9
|
+
interface BaseLineAreasContext {
|
10
|
+
selection: d3.Selection<any, unknown, any, unknown>;
|
11
|
+
computedData$: Observable<ComputedDataGrid>;
|
12
|
+
existSeriesLabels$: Observable<string[]>;
|
13
|
+
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
|
+
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
15
|
+
fullDataFormatter$: Observable<DataFormatterGrid>;
|
16
|
+
fullParams$: Observable<BaseLineAreasParams>;
|
17
|
+
fullChartParams$: Observable<ChartParams>;
|
18
|
+
gridAxesTransform$: Observable<TransformData>;
|
19
|
+
gridGraphicTransform$: Observable<TransformData>;
|
20
|
+
gridAxesSize$: Observable<{
|
21
|
+
width: number;
|
22
|
+
height: number;
|
23
|
+
}>;
|
24
|
+
gridHighlight$: Observable<string[]>;
|
25
|
+
gridContainer$: Observable<ContainerPosition[]>;
|
26
|
+
layout$: Observable<Layout>;
|
27
|
+
event$: Subject<EventGrid>;
|
28
|
+
}
|
29
|
+
export declare const createBaseLineAreas: BasePluginFn<BaseLineAreasContext>;
|
30
|
+
export {};
|
@@ -9,7 +9,7 @@ export interface BaseLinesParams {
|
|
9
9
|
interface BaseLinesContext {
|
10
10
|
selection: d3.Selection<any, unknown, any, unknown>;
|
11
11
|
computedData$: Observable<ComputedDataGrid>;
|
12
|
-
|
12
|
+
existSeriesLabels$: Observable<string[]>;
|
13
13
|
SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
14
14
|
GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>;
|
15
15
|
fullDataFormatter$: Observable<DataFormatterGrid>;
|
@@ -1,6 +1,7 @@
|
|
1
|
-
import { LinesParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, ScalingAreaParams, GridLegendParams } from './types';
|
1
|
+
import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, ScalingAreaParams, GridLegendParams } from './types';
|
2
2
|
|
3
3
|
export declare const DEFAULT_LINES_PARAMS: LinesParams;
|
4
|
+
export declare const DEFAULT_LINE_AREAS_PARAMS: LineAreasParams;
|
4
5
|
export declare const DEFAULT_DOTS_PARAMS: DotsParams;
|
5
6
|
export declare const DEFAULT_GROUP_AREA_PARAMS: GroupAuxParams;
|
6
7
|
export declare const DEFAULT_BARS_PARAMS: BarsParams;
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
2
|
import { ChartParams, DataFormatterGrid, ComputedDataGrid, TransformData, ContainerPosition } from '@orbcharts/core';
|
3
3
|
import * as d3 from 'd3';
|
4
|
-
export declare const gridSelectionsObservable: ({ selection, pluginName, clipPathID,
|
4
|
+
export declare const gridSelectionsObservable: ({ selection, pluginName, clipPathID, existSeriesLabels$, gridContainer$, gridAxesTransform$, gridGraphicTransform$ }: {
|
5
5
|
selection: d3.Selection<any, unknown, any, unknown>;
|
6
6
|
pluginName: string;
|
7
7
|
clipPathID: string;
|
8
|
-
|
8
|
+
existSeriesLabels$: Observable<string[]>;
|
9
9
|
gridContainer$: Observable<ContainerPosition[]>;
|
10
10
|
gridAxesTransform$: Observable<TransformData>;
|
11
11
|
gridGraphicTransform$: Observable<TransformData>;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
export * from './defaults';
|
2
2
|
export * from './types';
|
3
3
|
export { Lines } from './plugins/Lines';
|
4
|
+
export { LineAreas } from './plugins/LineAreas';
|
4
5
|
export { Bars } from './plugins/Bars';
|
5
6
|
export { BarsDiverging } from './plugins/BarsDiverging';
|
6
7
|
export { BarStack } from './plugins/BarStack';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const LineAreas: import('@orbcharts/core').PluginConstructor<"grid", string, import('..').LineAreasParams>;
|
@@ -4,6 +4,10 @@ export interface LinesParams {
|
|
4
4
|
lineCurve: string;
|
5
5
|
lineWidth: number;
|
6
6
|
}
|
7
|
+
export interface LineAreasParams {
|
8
|
+
lineCurve: string;
|
9
|
+
linearGradientOpacity: [number, number];
|
10
|
+
}
|
7
11
|
export interface DotsParams {
|
8
12
|
radius: number;
|
9
13
|
fillColorType: ColorType;
|
@@ -83,4 +87,5 @@ export interface GridLegendParams {
|
|
83
87
|
listRectWidth: number;
|
84
88
|
listRectHeight: number;
|
85
89
|
listRectRadius: number;
|
90
|
+
textColorType: ColorType;
|
86
91
|
}
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import { ColorType } from '@orbcharts/core';
|
2
|
-
import { ComputedDataTree } from '../../../orbcharts-core/src';
|
1
|
+
import { ColorType, ComputedDataTree } from '@orbcharts/core';
|
3
2
|
|
4
3
|
export interface TreeMapParams {
|
5
4
|
paddingInner: number;
|
@@ -18,4 +17,5 @@ export interface TreeLegendParams {
|
|
18
17
|
listRectWidth: number;
|
19
18
|
listRectHeight: number;
|
20
19
|
listRectRadius: number;
|
20
|
+
textColorType: ColorType;
|
21
21
|
}
|
@@ -1,8 +1,13 @@
|
|
1
|
-
import { AxisPosition, ColorType, ChartParams, ComputedDatumBase } from '@orbcharts/core';
|
1
|
+
import { AxisPosition, ColorType, ChartParams, ComputedDatumBase, ComputedDatumCategoryValue } from '@orbcharts/core';
|
2
2
|
|
3
3
|
export declare function getMinAndMaxValue(data: ComputedDatumBase[]): [number, number];
|
4
4
|
export declare function getColor(colorType: ColorType, fullChartParams: ChartParams): string;
|
5
|
-
export declare function
|
5
|
+
export declare function getSeriesValueColor(): void;
|
6
|
+
export declare function getCategoryValueColor({ datum, colorType, fullChartParams }: {
|
7
|
+
datum: ComputedDatumCategoryValue;
|
8
|
+
colorType: ColorType;
|
9
|
+
fullChartParams: ChartParams;
|
10
|
+
}): void;
|
6
11
|
export declare function getDatumColor({ datum, colorType, fullChartParams }: {
|
7
12
|
datum: ComputedDatumBase;
|
8
13
|
colorType: ColorType;
|