@orbcharts/presets-basic 3.0.0-alpha.4 → 3.0.0-alpha.41
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
@@ -1,12 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { DotsParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_DOTS_ONLY_SHOW_HIGHLIGHTED: PluginParamsFile<DotsParams> = {
|
5
|
-
id: 'PP_DOTS_ONLY_SHOW_HIGHLIGHTED',
|
6
|
-
chartType: 'grid',
|
7
|
-
pluginName: 'Dots',
|
8
|
-
description: '顯示highlight圓點',
|
9
|
-
data: {
|
10
|
-
onlyShowHighlighted: false
|
11
|
-
}
|
12
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { DotsParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_DOTS_SOLID: PluginParamsFile<DotsParams> = {
|
5
|
-
id: 'PP_DOTS_SOLID',
|
6
|
-
chartType: 'grid',
|
7
|
-
pluginName: 'Dots',
|
8
|
-
description: '實心圓點',
|
9
|
-
data: {
|
10
|
-
radius: 3,
|
11
|
-
fillColorType: 'series',
|
12
|
-
onlyShowHighlighted: false
|
13
|
-
}
|
14
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { GridLegendParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_GRID_LEGEND_BOTTOM: PluginParamsFile<GridLegendParams> = {
|
5
|
-
id: 'PP_GRID_LEGEND_BOTTOM',
|
6
|
-
chartType: 'grid',
|
7
|
-
pluginName: 'GridLegend',
|
8
|
-
description: '底部圖例',
|
9
|
-
data: {
|
10
|
-
position: 'bottom',
|
11
|
-
justify: 'center',
|
12
|
-
padding: 14,
|
13
|
-
}
|
14
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { GridLegendParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST: PluginParamsFile<GridLegendParams> = {
|
5
|
-
id: 'PP_GRID_LEGEND_BOTTOM_WITH_LINE_LIST',
|
6
|
-
chartType: 'grid',
|
7
|
-
pluginName: 'GridLegend',
|
8
|
-
description: '底部圖例及線條列點',
|
9
|
-
data: {
|
10
|
-
position: 'bottom',
|
11
|
-
justify: 'center',
|
12
|
-
padding: 14,
|
13
|
-
listRectHeight: 2
|
14
|
-
}
|
15
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { GroupAxisParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_GROUP_AXIS_ROTATE_LABEL: PluginParamsFile<GroupAxisParams> = {
|
5
|
-
id: 'PP_GROUP_AXIS_ROTATE_LABEL',
|
6
|
-
chartType: 'grid',
|
7
|
-
pluginName: 'GroupAxis',
|
8
|
-
description: '群組圖軸標籤文字傾斜',
|
9
|
-
data: {
|
10
|
-
tickTextRotate: 40
|
11
|
-
}
|
12
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export { PP_GROUP_AXIS_ROTATE_LABEL } from './PP_GROUP_AXIS_ROTATE_LABEL'
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { LinesParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_LINES_CURVE: PluginParamsFile<LinesParams> = {
|
5
|
-
id: 'PP_LINES_CURVE',
|
6
|
-
chartType: 'grid',
|
7
|
-
pluginName: 'Lines',
|
8
|
-
description: '圓弧折線圖',
|
9
|
-
data: {
|
10
|
-
lineCurve: 'curveMonotoneX',
|
11
|
-
lineWidth: 3
|
12
|
-
}
|
13
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export { PP_LINES_CURVE } from './PP_LINES_CURVE'
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { BubblesParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_BUBBLES_SCALING_BY_RADIUS: PluginParamsFile<BubblesParams> = {
|
5
|
-
id: 'PP_BUBBLES_SCALING_BY_RADIUS',
|
6
|
-
chartType: 'series',
|
7
|
-
pluginName: 'Bubbles',
|
8
|
-
description: '以半徑尺寸為比例的泡泡圖',
|
9
|
-
data: {
|
10
|
-
bubbleScaleType: 'radius'
|
11
|
-
}
|
12
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export { PP_BUBBLES_SCALING_BY_RADIUS } from './PP_BUBBLES_SCALING_BY_RADIUS'
|
File without changes
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { PieParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_PIE_DONUT: PluginParamsFile<PieParams> = {
|
5
|
-
id: 'PP_PIE_DONUT',
|
6
|
-
chartType: 'series',
|
7
|
-
pluginName: 'Pie',
|
8
|
-
description: '甜甜圈圖',
|
9
|
-
data: {
|
10
|
-
innerRadius: 0.5
|
11
|
-
}
|
12
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { PieParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_PIE_HALF_DONUT: PluginParamsFile<PieParams> = {
|
5
|
-
id: 'PP_PIE_HALF_DONUT',
|
6
|
-
chartType: 'series',
|
7
|
-
pluginName: 'Pie',
|
8
|
-
description: '半圓甜甜圈圖',
|
9
|
-
data: {
|
10
|
-
innerRadius: 0.5,
|
11
|
-
startAngle: - Math.PI / 2,
|
12
|
-
endAngle: Math.PI / 2,
|
13
|
-
}
|
14
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { PieLabelsParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_PIE_LABELS_HALF_ANGLE: PluginParamsFile<PieLabelsParams> = {
|
5
|
-
id: 'PP_PIE_LABELS_HALF_ANGLE',
|
6
|
-
chartType: 'series',
|
7
|
-
pluginName: 'PieLabels',
|
8
|
-
description: '半圓甜甜圈資料標籤',
|
9
|
-
data: {
|
10
|
-
startAngle: - Math.PI / 2,
|
11
|
-
endAngle: Math.PI / 2,
|
12
|
-
}
|
13
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { PieLabelsParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_PIE_LABELS_INNER: PluginParamsFile<PieLabelsParams> = {
|
5
|
-
id: 'PP_PIE_LABELS_INNER',
|
6
|
-
chartType: 'series',
|
7
|
-
pluginName: 'PieLabels',
|
8
|
-
description: '圖內資料標籤',
|
9
|
-
data: {
|
10
|
-
"labelCentroid": 1.3,
|
11
|
-
"labelColorType": "primary"
|
12
|
-
}
|
13
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import type { PluginParamsFile } from '../../types'
|
2
|
-
import type { SeriesLegendParams } from '@orbcharts/plugins-basic'
|
3
|
-
|
4
|
-
export const PP_SERIES_LEGEND_ROUND: PluginParamsFile<SeriesLegendParams> = {
|
5
|
-
id: 'PP_SERIES_LEGEND_BOTTOM',
|
6
|
-
chartType: 'series',
|
7
|
-
pluginName: 'SeriesLegend',
|
8
|
-
description: '圓型圖例列點',
|
9
|
-
data: {
|
10
|
-
listRectRadius: 7
|
11
|
-
}
|
12
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export { PP_SERIES_LEGEND_ROUND } from './PP_SERIES_LEGEND_ROUND'
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|
@@ -1 +0,0 @@
|
|
1
|
-
export const temp = {}
|