@orbcharts/presets-basic 3.0.0-alpha.4 → 3.0.0-alpha.40
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +200 -200
- package/dist/orbcharts-presets-basic.es.js +1383 -362
- package/dist/orbcharts-presets-basic.umd.js +1 -1
- package/dist/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.d.ts +4 -0
- package/dist/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.d.ts +4 -0
- package/dist/src/grid/PRESET_BARS_ROUND.d.ts +4 -0
- package/dist/src/grid/PRESET_BARS_THIN.d.ts +4 -0
- package/dist/src/grid/PRESET_GRID_BASIC.d.ts +4 -0
- package/dist/src/grid/PRESET_GRID_HORIZONTAL.d.ts +4 -0
- package/dist/src/grid/PRESET_GRID_PN_SCALE.d.ts +4 -0
- package/dist/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.d.ts +4 -0
- package/dist/src/grid/PRESET_GRID_SEPARATE_SERIES.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_BASIC.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_CURVE.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_HORIZONTAL.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_LOOSE_TICKS.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.d.ts +4 -0
- package/dist/src/grid/PRESET_LINES_WITH_SOLID_DOTS.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_BASIC.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_CURVE.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_HORIZONTAL.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.d.ts +4 -0
- package/dist/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.d.ts +4 -0
- package/dist/src/grid/index.d.ts +23 -0
- package/dist/src/index.d.ts +4 -18
- package/dist/src/multiGrid/PRESET_MULTI_GRID_BASIC.d.ts +4 -0
- package/dist/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.d.ts +4 -0
- package/dist/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.d.ts +6 -0
- package/dist/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.d.ts +4 -0
- package/dist/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.d.ts +4 -0
- package/dist/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.d.ts +4 -0
- package/dist/src/multiGrid/index.d.ts +6 -0
- package/dist/src/params.d.ts +7 -0
- package/dist/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.d.ts +4 -0
- package/dist/src/series/PRESET_BUBBLES_SEPARATE_SERIES.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_BASIC.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_DONUT.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_HALF_DONUT.d.ts +4 -0
- package/dist/src/series/PRESET_PIE_WITH_INNER_LABELS.d.ts +4 -0
- package/dist/src/series/PRESET_ROSE_BASIC.d.ts +4 -0
- package/dist/src/series/PRESET_ROSE_SCALING_BY_RADIUS.d.ts +4 -0
- package/dist/src/series/PRESET_SERIES_BASIC.d.ts +4 -0
- package/dist/src/series/PRESET_SERIES_SEPARATE_SERIES.d.ts +4 -0
- package/dist/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.d.ts +4 -0
- package/dist/src/series/PRESET_SERIES_SUM_SERIES.d.ts +4 -0
- package/dist/src/series/index.d.ts +12 -0
- package/dist/src/tree/PRESET_TREE_BASIC.d.ts +4 -0
- package/dist/src/tree/index.d.ts +1 -0
- package/dist/src/types.d.ts +116 -37
- package/dist/vite.config.d.ts +1 -1
- package/package.json +43 -43
- package/src/grid/PRESET_BARS_HORIZONTAL_AND_ROUND.ts +62 -0
- package/src/grid/PRESET_BARS_HORIZONTAL_AND_THIN.ts +59 -0
- package/src/grid/PRESET_BARS_ROUND.ts +46 -0
- package/src/grid/PRESET_BARS_THIN.ts +43 -0
- package/src/grid/PRESET_GRID_BASIC.ts +25 -0
- package/src/grid/PRESET_GRID_HORIZONTAL.ts +42 -0
- package/src/grid/PRESET_GRID_PN_SCALE.ts +33 -0
- package/src/grid/PRESET_GRID_ROTATE_AXIS_LABEL.ts +33 -0
- package/src/grid/PRESET_GRID_SEPARATE_SERIES.ts +38 -0
- package/src/grid/PRESET_LINES_BASIC.ts +44 -0
- package/src/grid/PRESET_LINES_CURVE.ts +47 -0
- package/src/grid/PRESET_LINES_HIGHLIGHT_GROUP_DOTS.ts +46 -0
- package/src/grid/PRESET_LINES_HORIZONTAL.ts +60 -0
- package/src/grid/PRESET_LINES_LOOSE_TICKS.ts +46 -0
- package/src/grid/PRESET_LINES_ROTATE_AXIS_LABEL.ts +49 -0
- package/src/grid/PRESET_LINES_WITH_SOLID_DOTS.ts +48 -0
- package/src/grid/PRESET_LINE_AREAS_BASIC.ts +54 -0
- package/src/grid/PRESET_LINE_AREAS_CURVE.ts +59 -0
- package/src/grid/PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS.ts +58 -0
- package/src/grid/PRESET_LINE_AREAS_HORIZONTAL.ts +58 -0
- package/src/grid/PRESET_LINE_AREAS_LOOSE_TICKS.ts +56 -0
- package/src/grid/PRESET_LINE_AREAS_ROTATE_AXIS_LABEL.ts +59 -0
- package/src/grid/PRESET_LINE_AREAS_SEPARATE_SERIES.ts +61 -0
- package/src/grid/index.ts +23 -0
- package/src/index.ts +4 -133
- package/src/multiGrid/PRESET_MULTI_GRID_BASIC.ts +36 -0
- package/src/multiGrid/PRESET_MULTI_GRID_DIVERGING.ts +85 -0
- package/src/multiGrid/PRESET_MULTI_GRID_ROUND_STYLE.ts +57 -0
- package/src/multiGrid/PRESET_MULTI_GRID_SEPARATE_GRID.ts +59 -0
- package/src/multiGrid/PRESET_MULTI_LINES_SEPARATE_GRID.ts +103 -0
- package/src/multiGrid/PRESET_MULTI_LINE_AREAS_SEPARATE_GRID.ts +121 -0
- package/src/multiGrid/index.ts +6 -0
- package/src/params.ts +57 -0
- package/src/series/PRESET_BUBBLES_SCALING_BY_RADIUS.ts +19 -0
- package/src/series/PRESET_BUBBLES_SEPARATE_SERIES.ts +29 -0
- package/src/series/PRESET_PIE_BASIC.ts +19 -0
- package/src/series/PRESET_PIE_DONUT.ts +27 -0
- package/src/series/PRESET_PIE_HALF_DONUT.ts +40 -0
- package/src/series/PRESET_PIE_WITH_INNER_LABELS.ts +28 -0
- package/src/series/PRESET_ROSE_BASIC.ts +19 -0
- package/src/series/PRESET_ROSE_SCALING_BY_RADIUS.ts +27 -0
- package/src/series/PRESET_SERIES_BASIC.ts +15 -0
- package/src/series/PRESET_SERIES_SEPARATE_SERIES.ts +17 -0
- package/src/series/PRESET_SERIES_SEPARATE_SERIES_AND_SUM_SERIES.ts +18 -0
- package/src/series/PRESET_SERIES_SUM_SERIES.ts +17 -0
- package/src/series/index.ts +13 -0
- package/src/tree/PRESET_TREE_BASIC.ts +25 -0
- package/src/tree/index.ts +1 -0
- package/src/types.ts +242 -58
- package/tsconfig.base.json +14 -0
- package/tsconfig.json +2 -13
- package/vite.config.js +22 -44
- package/dist/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_LEFT_PADDING.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_RIGHT_PADDING.d.ts +0 -3
- package/dist/src/chartParamsFiles/CP_TOP_AND_NO_BOTTOM_PADDING.d.ts +0 -3
- package/dist/src/chartParamsFiles/index.d.ts +0 -10
- package/dist/src/createPreset.d.ts +0 -9
- package/dist/src/gridDataFormatterFiles/DF_BOTTOM_VALUE_AXIS.d.ts +0 -3
- package/dist/src/gridDataFormatterFiles/index.d.ts +0 -1
- package/dist/src/gridPluginParamsFiles/Bars/PP_BARS_ROUND.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/Bars/PP_BARS_THIN.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/Bars/index.d.ts +0 -2
- package/dist/src/gridPluginParamsFiles/Dots/PP_DOTS_ONLY_SHOW_HIGHLIGHTED.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/Dots/PP_DOTS_SOLID.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/Dots/index.d.ts +0 -2
- package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/GridLegend/index.d.ts +0 -2
- package/dist/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_ROTATE_LABEL.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/GroupAxis/index.d.ts +0 -1
- package/dist/src/gridPluginParamsFiles/Lines/PP_LINES_CURVE.d.ts +0 -4
- package/dist/src/gridPluginParamsFiles/Lines/index.d.ts +0 -1
- package/dist/src/gridPluginParamsFiles/index.d.ts +0 -5
- package/dist/src/multiGridDataFormatterFiles/index.d.ts +0 -1
- package/dist/src/multiGridPluginParamsFiles/index.d.ts +0 -1
- package/dist/src/multiValueDataFormatterFiles/index.d.ts +0 -1
- package/dist/src/multiValuePluginParamsFiles/index.d.ts +0 -1
- package/dist/src/relationshipDataFormatterFiles/index.d.ts +0 -1
- package/dist/src/relationshipPluginParamsFiles/index.d.ts +0 -1
- package/dist/src/seriesDataFormatterFiles/index.d.ts +0 -1
- package/dist/src/seriesPluginParamsFiles/Bubbles/PP_BUBBLES_SCALING_BY_RADIUS.d.ts +0 -4
- package/dist/src/seriesPluginParamsFiles/Bubbles/index.d.ts +0 -1
- package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_BLACK_STROKE.d.ts +0 -0
- package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_DONUT.d.ts +0 -4
- package/dist/src/seriesPluginParamsFiles/Pie/PP_PIE_HALF_DONUT.d.ts +0 -4
- package/dist/src/seriesPluginParamsFiles/Pie/index.d.ts +0 -2
- package/dist/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_HALF_ANGLE.d.ts +0 -4
- package/dist/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_INNER.d.ts +0 -4
- package/dist/src/seriesPluginParamsFiles/PieLabels/index.d.ts +0 -2
- package/dist/src/seriesPluginParamsFiles/SeriesLegend/PP_SERIES_LEGEND_ROUND.d.ts +0 -4
- package/dist/src/seriesPluginParamsFiles/SeriesLegend/index.d.ts +0 -1
- package/dist/src/seriesPluginParamsFiles/index.d.ts +0 -4
- package/dist/src/treeDataFormatterFiles/index.d.ts +0 -1
- package/dist/src/treePluginParamsFiles/index.d.ts +0 -1
- package/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING.ts +0 -14
- package/src/chartParamsFiles/CP_BOTTOM_AND_LEFT_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
- package/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING.ts +0 -14
- package/src/chartParamsFiles/CP_BOTTOM_LONG_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
- package/src/chartParamsFiles/CP_BOTTOM_PADDING.ts +0 -14
- package/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_GROUP_HIGHLIGHT.ts +0 -15
- package/src/chartParamsFiles/CP_BOTTOM_PADDING_WITH_SERIES_HIGHLIGHT.ts +0 -15
- package/src/chartParamsFiles/CP_LEFT_PADDING.ts +0 -14
- package/src/chartParamsFiles/CP_RIGHT_PADDING.ts +0 -14
- package/src/chartParamsFiles/CP_TOP_AND_NO_BOTTOM_PADDING.ts +0 -14
- package/src/chartParamsFiles/index.ts +0 -10
- package/src/createPreset.ts +0 -88
- package/src/gridDataFormatterFiles/DF_BOTTOM_VALUE_AXIS.ts +0 -16
- package/src/gridDataFormatterFiles/index.ts +0 -1
- package/src/gridPluginParamsFiles/Bars/PP_BARS_ROUND.ts +0 -15
- package/src/gridPluginParamsFiles/Bars/PP_BARS_THIN.ts +0 -14
- package/src/gridPluginParamsFiles/Bars/index.ts +0 -2
- package/src/gridPluginParamsFiles/Dots/PP_DOTS_ONLY_SHOW_HIGHLIGHTED.ts +0 -12
- package/src/gridPluginParamsFiles/Dots/PP_DOTS_SOLID.ts +0 -14
- package/src/gridPluginParamsFiles/Dots/index.ts +0 -2
- package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM.ts +0 -14
- package/src/gridPluginParamsFiles/GridLegend/PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST.ts +0 -15
- package/src/gridPluginParamsFiles/GridLegend/index.ts +0 -2
- package/src/gridPluginParamsFiles/GroupAxis/PP_GROUP_AXIS_ROTATE_LABEL.ts +0 -12
- package/src/gridPluginParamsFiles/GroupAxis/index.ts +0 -1
- package/src/gridPluginParamsFiles/Lines/PP_LINES_CURVE.ts +0 -13
- package/src/gridPluginParamsFiles/Lines/index.ts +0 -1
- package/src/gridPluginParamsFiles/index.ts +0 -6
- package/src/multiGridDataFormatterFiles/index.ts +0 -1
- package/src/multiGridPluginParamsFiles/index.ts +0 -1
- package/src/multiValueDataFormatterFiles/index.ts +0 -1
- package/src/multiValuePluginParamsFiles/index.ts +0 -1
- package/src/relationshipDataFormatterFiles/index.ts +0 -1
- package/src/relationshipPluginParamsFiles/index.ts +0 -1
- package/src/seriesDataFormatterFiles/index.ts +0 -1
- package/src/seriesPluginParamsFiles/Bubbles/PP_BUBBLES_SCALING_BY_RADIUS.ts +0 -12
- package/src/seriesPluginParamsFiles/Bubbles/index.ts +0 -1
- package/src/seriesPluginParamsFiles/Pie/PP_PIE_BLACK_STROKE.ts +0 -0
- package/src/seriesPluginParamsFiles/Pie/PP_PIE_DONUT.ts +0 -12
- package/src/seriesPluginParamsFiles/Pie/PP_PIE_HALF_DONUT.ts +0 -14
- package/src/seriesPluginParamsFiles/Pie/index.ts +0 -2
- package/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_HALF_ANGLE.ts +0 -13
- package/src/seriesPluginParamsFiles/PieLabels/PP_PIE_LABELS_INNER.ts +0 -13
- package/src/seriesPluginParamsFiles/PieLabels/index.ts +0 -2
- package/src/seriesPluginParamsFiles/SeriesLegend/PP_SERIES_LEGEND_ROUND.ts +0 -12
- package/src/seriesPluginParamsFiles/SeriesLegend/index.ts +0 -1
- package/src/seriesPluginParamsFiles/index.ts +0 -4
- package/src/treeDataFormatterFiles/index.ts +0 -1
- package/src/treePluginParamsFiles/index.ts +0 -1
@@ -0,0 +1,46 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetDotsParams,
|
4
|
+
PresetGroupAxisParams,
|
5
|
+
PresetValueAxisParams,
|
6
|
+
PresetGroupAuxParams,
|
7
|
+
PresetGridLegendParams,
|
8
|
+
PresetNoneDataPluginParams
|
9
|
+
} from '../types'
|
10
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
11
|
+
|
12
|
+
export const PRESET_LINES_LOOSE_TICKS: PresetPartial<'grid', PresetLinesParams
|
13
|
+
& PresetDotsParams
|
14
|
+
& PresetGridLegendParams
|
15
|
+
& PresetGroupAxisParams
|
16
|
+
& PresetValueAxisParams
|
17
|
+
& PresetGroupAuxParams
|
18
|
+
& PresetNoneDataPluginParams> = {
|
19
|
+
name: 'PRESET_LINES_LOOSE_TICKS',
|
20
|
+
description: '寬鬆標籤',
|
21
|
+
chartParams: {
|
22
|
+
padding: {
|
23
|
+
top: 60,
|
24
|
+
right: 60,
|
25
|
+
bottom: 120,
|
26
|
+
left: 60
|
27
|
+
},
|
28
|
+
highlightTarget: 'series'
|
29
|
+
},
|
30
|
+
allPluginParams: {
|
31
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
32
|
+
Lines: {},
|
33
|
+
Dots: {},
|
34
|
+
GroupAxis: {
|
35
|
+
ticks: 6
|
36
|
+
},
|
37
|
+
ValueAxis: {},
|
38
|
+
GroupAux: {},
|
39
|
+
GridLegend: {
|
40
|
+
position: 'bottom',
|
41
|
+
justify: 'center',
|
42
|
+
padding: 14,
|
43
|
+
listRectHeight: 2
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetDotsParams,
|
4
|
+
PresetGroupAxisParams,
|
5
|
+
PresetValueAxisParams,
|
6
|
+
PresetGroupAuxParams,
|
7
|
+
PresetGridLegendParams,
|
8
|
+
PresetNoneDataPluginParams
|
9
|
+
} from '../types'
|
10
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
11
|
+
|
12
|
+
export const PRESET_LINES_ROTATE_AXIS_LABEL: PresetPartial<'grid', PresetLinesParams
|
13
|
+
& PresetDotsParams
|
14
|
+
& PresetGridLegendParams
|
15
|
+
& PresetGroupAxisParams
|
16
|
+
& PresetValueAxisParams
|
17
|
+
& PresetGroupAuxParams
|
18
|
+
& PresetNoneDataPluginParams> = {
|
19
|
+
name: 'PRESET_LINES_ROTATE_AXIS_LABEL',
|
20
|
+
description: '傾斜標籤',
|
21
|
+
chartParams: {
|
22
|
+
padding: {
|
23
|
+
top: 60,
|
24
|
+
right: 60,
|
25
|
+
bottom: 160,
|
26
|
+
left: 60
|
27
|
+
},
|
28
|
+
highlightTarget: 'series'
|
29
|
+
},
|
30
|
+
allPluginParams: {
|
31
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
32
|
+
Lines: {},
|
33
|
+
Dots: {},
|
34
|
+
GroupAxis: {
|
35
|
+
tickPadding: 15,
|
36
|
+
tickTextRotate: -30
|
37
|
+
},
|
38
|
+
ValueAxis: {},
|
39
|
+
GroupAux: {
|
40
|
+
labelRotate: -30
|
41
|
+
},
|
42
|
+
GridLegend: {
|
43
|
+
position: 'bottom',
|
44
|
+
justify: 'center',
|
45
|
+
padding: 14,
|
46
|
+
listRectHeight: 2
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetDotsParams,
|
4
|
+
PresetGroupAxisParams,
|
5
|
+
PresetValueAxisParams,
|
6
|
+
PresetGroupAuxParams,
|
7
|
+
PresetGridLegendParams,
|
8
|
+
PresetNoneDataPluginParams
|
9
|
+
} from '../types'
|
10
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
11
|
+
|
12
|
+
export const PRESET_LINES_WITH_SOLID_DOTS: PresetPartial<'grid', PresetLinesParams
|
13
|
+
& PresetDotsParams
|
14
|
+
& PresetGridLegendParams
|
15
|
+
& PresetGroupAxisParams
|
16
|
+
& PresetValueAxisParams
|
17
|
+
& PresetGroupAuxParams
|
18
|
+
& PresetNoneDataPluginParams> = {
|
19
|
+
name: 'PRESET_LINES_WITH_SOLID_DOTS',
|
20
|
+
description: '折線圖及實心圓點',
|
21
|
+
chartParams: {
|
22
|
+
padding: {
|
23
|
+
top: 60,
|
24
|
+
right: 60,
|
25
|
+
bottom: 120,
|
26
|
+
left: 60
|
27
|
+
},
|
28
|
+
highlightTarget: 'series'
|
29
|
+
},
|
30
|
+
allPluginParams: {
|
31
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
32
|
+
Lines: {},
|
33
|
+
Dots: {
|
34
|
+
radius: 3,
|
35
|
+
fillColorType: 'series',
|
36
|
+
onlyShowHighlighted: false
|
37
|
+
},
|
38
|
+
GroupAxis: {},
|
39
|
+
ValueAxis: {},
|
40
|
+
GroupAux: {},
|
41
|
+
GridLegend: {
|
42
|
+
position: 'bottom',
|
43
|
+
justify: 'center',
|
44
|
+
padding: 14,
|
45
|
+
listRectHeight: 2
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_BASIC: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_BASIC',
|
22
|
+
description: '基本LineArea參數',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 120,
|
28
|
+
left: 60
|
29
|
+
},
|
30
|
+
highlightTarget: 'series'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
groupAxis: {
|
35
|
+
scalePadding: 0
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
allPluginParams: {
|
40
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
41
|
+
Lines: {},
|
42
|
+
LineAreas: {},
|
43
|
+
Dots: {},
|
44
|
+
GroupAxis: {},
|
45
|
+
ValueAxis: {},
|
46
|
+
GroupAux: {},
|
47
|
+
GridLegend: {
|
48
|
+
position: 'bottom',
|
49
|
+
justify: 'center',
|
50
|
+
padding: 14,
|
51
|
+
listRectHeight: 2
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_CURVE: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_CURVE',
|
22
|
+
description: '弧線折線圖',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 120,
|
28
|
+
left: 60
|
29
|
+
},
|
30
|
+
highlightTarget: 'series'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
groupAxis: {
|
35
|
+
scalePadding: 0
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
allPluginParams: {
|
40
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
41
|
+
Lines: {
|
42
|
+
lineCurve: 'curveMonotoneX',
|
43
|
+
lineWidth: 3
|
44
|
+
},
|
45
|
+
LineAreas: {
|
46
|
+
lineCurve: 'curveMonotoneX',
|
47
|
+
},
|
48
|
+
Dots: {},
|
49
|
+
GroupAxis: {},
|
50
|
+
ValueAxis: {},
|
51
|
+
GroupAux: {},
|
52
|
+
GridLegend: {
|
53
|
+
position: 'bottom',
|
54
|
+
justify: 'center',
|
55
|
+
padding: 14,
|
56
|
+
listRectHeight: 2
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS',
|
22
|
+
description: '折線圖及Highlight Group圓點',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 120,
|
28
|
+
left: 60
|
29
|
+
},
|
30
|
+
highlightTarget: 'group'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
groupAxis: {
|
35
|
+
scalePadding: 0
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
allPluginParams: {
|
40
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
41
|
+
Lines: {
|
42
|
+
lineWidth: 3
|
43
|
+
},
|
44
|
+
LineAreas: {},
|
45
|
+
Dots: {
|
46
|
+
onlyShowHighlighted: false
|
47
|
+
},
|
48
|
+
GroupAxis: {},
|
49
|
+
ValueAxis: {},
|
50
|
+
GroupAux: {},
|
51
|
+
GridLegend: {
|
52
|
+
position: 'bottom',
|
53
|
+
justify: 'center',
|
54
|
+
padding: 14,
|
55
|
+
listRectHeight: 2
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_HORIZONTAL: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_HORIZONTAL',
|
22
|
+
description: '橫向折線圖',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 120,
|
28
|
+
left: 160
|
29
|
+
},
|
30
|
+
highlightTarget: 'series'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
valueAxis: {
|
35
|
+
position: 'bottom'
|
36
|
+
},
|
37
|
+
groupAxis: {
|
38
|
+
position: 'left',
|
39
|
+
scalePadding: 0
|
40
|
+
},
|
41
|
+
}
|
42
|
+
},
|
43
|
+
allPluginParams: {
|
44
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
45
|
+
Lines: {},
|
46
|
+
LineAreas: {},
|
47
|
+
Dots: {},
|
48
|
+
GroupAxis: {},
|
49
|
+
ValueAxis: {},
|
50
|
+
GroupAux: {},
|
51
|
+
GridLegend: {
|
52
|
+
position: 'bottom',
|
53
|
+
justify: 'center',
|
54
|
+
padding: 14,
|
55
|
+
listRectHeight: 2
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_LOOSE_TICKS: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_LOOSE_TICKS',
|
22
|
+
description: '寬鬆標籤',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 120,
|
28
|
+
left: 60
|
29
|
+
},
|
30
|
+
highlightTarget: 'series'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
groupAxis: {
|
35
|
+
scalePadding: 0
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
allPluginParams: {
|
40
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
41
|
+
Lines: {},
|
42
|
+
LineAreas: {},
|
43
|
+
Dots: {},
|
44
|
+
GroupAxis: {
|
45
|
+
ticks: 6
|
46
|
+
},
|
47
|
+
ValueAxis: {},
|
48
|
+
GroupAux: {},
|
49
|
+
GridLegend: {
|
50
|
+
position: 'bottom',
|
51
|
+
justify: 'center',
|
52
|
+
padding: 14,
|
53
|
+
listRectHeight: 2
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_ROTATE_AXIS_LABEL: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_ROTATE_AXIS_LABEL',
|
22
|
+
description: '傾斜標籤',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 160,
|
28
|
+
left: 60
|
29
|
+
},
|
30
|
+
highlightTarget: 'series'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
groupAxis: {
|
35
|
+
scalePadding: 0
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
allPluginParams: {
|
40
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
41
|
+
Lines: {},
|
42
|
+
LineAreas: {},
|
43
|
+
Dots: {},
|
44
|
+
GroupAxis: {
|
45
|
+
tickPadding: 15,
|
46
|
+
tickTextRotate: -30
|
47
|
+
},
|
48
|
+
ValueAxis: {},
|
49
|
+
GroupAux: {
|
50
|
+
labelRotate: -30
|
51
|
+
},
|
52
|
+
GridLegend: {
|
53
|
+
position: 'bottom',
|
54
|
+
justify: 'center',
|
55
|
+
padding: 14,
|
56
|
+
listRectHeight: 2
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
import type { PresetPartial } from '@orbcharts/core'
|
2
|
+
import type { PresetLinesParams,
|
3
|
+
PresetLineAreasParams,
|
4
|
+
PresetDotsParams,
|
5
|
+
PresetGroupAxisParams,
|
6
|
+
PresetValueAxisParams,
|
7
|
+
PresetGroupAuxParams,
|
8
|
+
PresetGridLegendParams,
|
9
|
+
PresetNoneDataPluginParams
|
10
|
+
} from '../types'
|
11
|
+
import { ALL_PLUGIN_PARAMS_NONE_DATA } from '../params'
|
12
|
+
|
13
|
+
export const PRESET_LINE_AREAS_SEPARATE_SERIES: PresetPartial<'grid', PresetLinesParams
|
14
|
+
& PresetLineAreasParams
|
15
|
+
& PresetDotsParams
|
16
|
+
& PresetGridLegendParams
|
17
|
+
& PresetGroupAxisParams
|
18
|
+
& PresetValueAxisParams
|
19
|
+
& PresetGroupAuxParams
|
20
|
+
& PresetNoneDataPluginParams> = {
|
21
|
+
name: 'PRESET_LINE_AREAS_SEPARATE_SERIES',
|
22
|
+
description: 'LineAreas 分開顯示Series',
|
23
|
+
chartParams: {
|
24
|
+
padding: {
|
25
|
+
top: 60,
|
26
|
+
right: 60,
|
27
|
+
bottom: 160,
|
28
|
+
left: 60
|
29
|
+
},
|
30
|
+
highlightTarget: 'series'
|
31
|
+
},
|
32
|
+
dataFormatter: {
|
33
|
+
grid: {
|
34
|
+
// seriesSlotIndexes: [0, 1],
|
35
|
+
separateSeries: true,
|
36
|
+
groupAxis: {
|
37
|
+
scalePadding: 0
|
38
|
+
}
|
39
|
+
},
|
40
|
+
},
|
41
|
+
allPluginParams: {
|
42
|
+
...ALL_PLUGIN_PARAMS_NONE_DATA,
|
43
|
+
Lines: {},
|
44
|
+
LineAreas: {},
|
45
|
+
Dots: {},
|
46
|
+
GroupAxis: {
|
47
|
+
tickPadding: 15,
|
48
|
+
tickTextRotate: -30
|
49
|
+
},
|
50
|
+
ValueAxis: {},
|
51
|
+
GroupAux: {
|
52
|
+
labelRotate: -30
|
53
|
+
},
|
54
|
+
GridLegend: {
|
55
|
+
position: 'bottom',
|
56
|
+
justify: 'center',
|
57
|
+
padding: 14,
|
58
|
+
listRectHeight: 2
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
export { PRESET_BARS_HORIZONTAL_AND_ROUND } from './PRESET_BARS_HORIZONTAL_AND_ROUND'
|
2
|
+
export { PRESET_BARS_HORIZONTAL_AND_THIN } from './PRESET_BARS_HORIZONTAL_AND_THIN'
|
3
|
+
export { PRESET_BARS_ROUND } from './PRESET_BARS_ROUND'
|
4
|
+
export { PRESET_BARS_THIN } from './PRESET_BARS_THIN'
|
5
|
+
export { PRESET_GRID_BASIC } from './PRESET_GRID_BASIC'
|
6
|
+
export { PRESET_GRID_HORIZONTAL } from './PRESET_GRID_HORIZONTAL'
|
7
|
+
export { PRESET_GRID_PN_SCALE } from './PRESET_GRID_PN_SCALE'
|
8
|
+
export { PRESET_GRID_ROTATE_AXIS_LABEL } from './PRESET_GRID_ROTATE_AXIS_LABEL'
|
9
|
+
export { PRESET_GRID_SEPARATE_SERIES } from './PRESET_GRID_SEPARATE_SERIES'
|
10
|
+
export { PRESET_LINE_AREAS_BASIC } from './PRESET_LINE_AREAS_BASIC'
|
11
|
+
export { PRESET_LINE_AREAS_CURVE } from './PRESET_LINE_AREAS_CURVE'
|
12
|
+
export { PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS } from './PRESET_LINE_AREAS_HIGHLIGHT_GROUP_DOTS'
|
13
|
+
export { PRESET_LINE_AREAS_HORIZONTAL } from './PRESET_LINE_AREAS_HORIZONTAL'
|
14
|
+
export { PRESET_LINE_AREAS_LOOSE_TICKS } from './PRESET_LINE_AREAS_LOOSE_TICKS'
|
15
|
+
export { PRESET_LINE_AREAS_ROTATE_AXIS_LABEL } from './PRESET_LINE_AREAS_ROTATE_AXIS_LABEL'
|
16
|
+
export { PRESET_LINE_AREAS_SEPARATE_SERIES } from './PRESET_LINE_AREAS_SEPARATE_SERIES'
|
17
|
+
export { PRESET_LINES_BASIC } from './PRESET_LINES_BASIC'
|
18
|
+
export { PRESET_LINES_CURVE } from './PRESET_LINES_CURVE'
|
19
|
+
export { PRESET_LINES_HIGHLIGHT_GROUP_DOTS } from './PRESET_LINES_HIGHLIGHT_GROUP_DOTS'
|
20
|
+
export { PRESET_LINES_HORIZONTAL } from './PRESET_LINES_HORIZONTAL'
|
21
|
+
export { PRESET_LINES_LOOSE_TICKS } from './PRESET_LINES_LOOSE_TICKS'
|
22
|
+
export { PRESET_LINES_ROTATE_AXIS_LABEL } from './PRESET_LINES_ROTATE_AXIS_LABEL'
|
23
|
+
export { PRESET_LINES_WITH_SOLID_DOTS } from './PRESET_LINES_WITH_SOLID_DOTS'
|