@orbcharts/plugins-basic 3.0.0-alpha.76 → 3.0.0-alpha.77

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.
Files changed (96) hide show
  1. package/dist/lib/plugins-basic-types.d.ts +1 -0
  2. package/dist/src/base/BaseBarStack.d.ts +1 -5
  3. package/dist/src/base/BaseBars.d.ts +1 -6
  4. package/dist/src/base/BaseBarsTriangle.d.ts +1 -6
  5. package/dist/src/base/BaseDots.d.ts +2 -8
  6. package/dist/src/base/BaseGroupAxis.d.ts +2 -16
  7. package/dist/src/base/BaseLegend.d.ts +2 -15
  8. package/dist/src/base/BaseLineAreas.d.ts +1 -4
  9. package/dist/src/base/BaseLines.d.ts +1 -4
  10. package/dist/src/base/BaseValueAxis.d.ts +2 -16
  11. package/dist/src/grid/defaults.d.ts +1 -1
  12. package/dist/src/grid/index.d.ts +0 -1
  13. package/dist/src/grid/plugins/BarStack.d.ts +1 -1
  14. package/dist/src/grid/plugins/Bars.d.ts +1 -1
  15. package/dist/src/grid/plugins/BarsPN.d.ts +1 -1
  16. package/dist/src/grid/plugins/BarsTriangle.d.ts +1 -1
  17. package/dist/src/grid/plugins/Dots.d.ts +1 -1
  18. package/dist/src/grid/plugins/GridLegend.d.ts +1 -1
  19. package/dist/src/grid/plugins/GroupAux.d.ts +1 -1
  20. package/dist/src/grid/plugins/GroupAxis.d.ts +1 -1
  21. package/dist/src/grid/plugins/LineAreas.d.ts +1 -1
  22. package/dist/src/grid/plugins/Lines.d.ts +1 -1
  23. package/dist/src/grid/plugins/ScalingArea.d.ts +1 -1
  24. package/dist/src/grid/plugins/ValueAxis.d.ts +1 -1
  25. package/dist/src/grid/plugins/ValueStackAxis.d.ts +1 -1
  26. package/dist/src/multiGrid/defaults.d.ts +1 -1
  27. package/dist/src/multiGrid/index.d.ts +0 -1
  28. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +1 -1
  29. package/dist/src/multiGrid/plugins/MultiBars.d.ts +1 -1
  30. package/dist/src/multiGrid/plugins/MultiBarsTriangle.d.ts +1 -1
  31. package/dist/src/multiGrid/plugins/MultiDots.d.ts +1 -1
  32. package/dist/src/multiGrid/plugins/MultiGridLegend.d.ts +1 -1
  33. package/dist/src/multiGrid/plugins/MultiGroupAxis.d.ts +1 -1
  34. package/dist/src/multiGrid/plugins/MultiLineAreas.d.ts +1 -1
  35. package/dist/src/multiGrid/plugins/MultiLines.d.ts +1 -1
  36. package/dist/src/multiGrid/plugins/MultiValueAxis.d.ts +1 -1
  37. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +1 -1
  38. package/dist/src/multiGrid/plugins/OverlappingValueAxes.d.ts +1 -1
  39. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +1 -1
  40. package/dist/src/noneData/defaults.d.ts +1 -1
  41. package/dist/src/noneData/index.d.ts +0 -1
  42. package/dist/src/noneData/plugins/Container.d.ts +1 -1
  43. package/dist/src/noneData/plugins/Tooltip.d.ts +1 -1
  44. package/dist/src/series/defaults.d.ts +1 -1
  45. package/dist/src/series/index.d.ts +0 -1
  46. package/dist/src/series/plugins/Bubbles.d.ts +1 -1
  47. package/dist/src/series/plugins/Pie.d.ts +1 -1
  48. package/dist/src/series/plugins/PieEventTexts.d.ts +1 -1
  49. package/dist/src/series/plugins/PieLabels.d.ts +1 -1
  50. package/dist/src/series/plugins/Rose.d.ts +1 -1
  51. package/dist/src/series/plugins/RoseLabels.d.ts +1 -1
  52. package/dist/src/series/plugins/SeriesLegend.d.ts +1 -1
  53. package/dist/src/tree/defaults.d.ts +1 -1
  54. package/dist/src/tree/index.d.ts +0 -1
  55. package/dist/src/tree/plugins/TreeLegend.d.ts +1 -1
  56. package/dist/src/tree/plugins/TreeMap.d.ts +1 -1
  57. package/lib/plugins-basic-types.ts +6 -0
  58. package/package.json +2 -1
  59. package/src/base/BaseBarStack.ts +6 -5
  60. package/src/base/BaseBars.ts +8 -7
  61. package/src/base/BaseBarsTriangle.ts +9 -7
  62. package/src/base/BaseDots.ts +11 -9
  63. package/src/base/BaseGroupAxis.ts +20 -19
  64. package/src/base/BaseLegend.ts +19 -17
  65. package/src/base/BaseLineAreas.ts +8 -6
  66. package/src/base/BaseLines.ts +14 -12
  67. package/src/base/BaseValueAxis.ts +18 -16
  68. package/src/grid/defaults.ts +1 -1
  69. package/src/grid/index.ts +1 -1
  70. package/src/grid/plugins/GroupAux.ts +1 -1
  71. package/src/multiGrid/defaults.ts +1 -1
  72. package/src/multiGrid/index.ts +1 -1
  73. package/src/multiGrid/plugins/MultiGridLegend.ts +1 -1
  74. package/src/noneData/defaults.ts +1 -1
  75. package/src/noneData/index.ts +1 -1
  76. package/src/series/defaults.ts +1 -1
  77. package/src/series/index.ts +1 -1
  78. package/src/series/plugins/Bubbles.ts +1 -1
  79. package/src/series/plugins/Pie.ts +1 -1
  80. package/src/series/plugins/PieEventTexts.ts +1 -1
  81. package/src/series/plugins/PieLabels.ts +1 -1
  82. package/src/series/plugins/Rose.ts +1 -1
  83. package/src/series/plugins/RoseLabels.ts +1 -1
  84. package/src/tree/defaults.ts +1 -1
  85. package/src/tree/index.ts +1 -1
  86. package/src/tree/plugins/TreeMap.ts +1 -1
  87. package/dist/src/grid/types.d.ts +0 -93
  88. package/dist/src/multiGrid/types.d.ts +0 -61
  89. package/dist/src/noneData/types.d.ts +0 -24
  90. package/dist/src/series/types.d.ts +0 -73
  91. package/dist/src/tree/types.d.ts +0 -21
  92. package/src/grid/types.ts +0 -124
  93. package/src/multiGrid/types.ts +0 -73
  94. package/src/noneData/types.ts +0 -26
  95. package/src/series/types.ts +0 -87
  96. package/src/tree/types.ts +0 -23
@@ -19,30 +19,31 @@ import type {
19
19
  ChartParams,
20
20
  TransformData
21
21
  } from '../../lib/core-types'
22
+ import type { BaseGroupAxisParams } from '../../lib/plugins-basic-types'
22
23
  import type { BasePluginFn } from './types'
23
24
  import { parseTickFormatValue } from '../utils/d3Utils'
24
25
  import { getColor, getClassName } from '../utils/orbchartsUtils'
25
26
  import { renderTspansOnAxis } from '../utils/d3Graphics'
26
27
 
27
- export interface BaseGroupAxisParams {
28
- // xLabel: string
29
- // labelAnchor: 'start' | 'end'
30
- labelOffset: [number, number]
31
- labelColorType: ColorType
32
- axisLineVisible: boolean
33
- axisLineColorType: ColorType
34
- ticks: number | null | 'all'
35
- tickFormat: string | ((text: any) => string)
36
- tickLineVisible: boolean
37
- tickPadding: number
38
- tickFullLine: boolean
39
- tickFullLineDasharray: string
40
- tickColorType: ColorType
41
- // axisLineColor: string
42
- // axisLabelColor: string
43
- tickTextRotate: number
44
- tickTextColorType: ColorType
45
- }
28
+ // export interface BaseGroupAxisParams {
29
+ // // xLabel: string
30
+ // // labelAnchor: 'start' | 'end'
31
+ // labelOffset: [number, number]
32
+ // labelColorType: ColorType
33
+ // axisLineVisible: boolean
34
+ // axisLineColorType: ColorType
35
+ // ticks: number | null | 'all'
36
+ // tickFormat: string | ((text: any) => string)
37
+ // tickLineVisible: boolean
38
+ // tickPadding: number
39
+ // tickFullLine: boolean
40
+ // tickFullLineDasharray: string
41
+ // tickColorType: ColorType
42
+ // // axisLineColor: string
43
+ // // axisLabelColor: string
44
+ // tickTextRotate: number
45
+ // tickTextColorType: ColorType
46
+ // }
46
47
 
47
48
  interface BaseGroupAxisContext {
48
49
  selection: d3.Selection<any, unknown, any, unknown>
@@ -9,26 +9,28 @@ import {
9
9
  Subject } from 'rxjs'
10
10
  import type { BasePluginFn } from './types'
11
11
  import type {
12
- ChartParams, Layout, ColorType } from '../../lib/core-types'
12
+ ChartParams, Layout, ColorType
13
+ } from '../../lib/core-types'
14
+ import type { BaseLegendParams } from '../../lib/plugins-basic-types'
13
15
  import { getClassName, getColor, getDatumColor } from '../utils/orbchartsUtils'
14
16
  import { measureTextWidth } from '../utils/commonUtils'
15
17
 
16
- export interface BaseLegendParams {
17
- position: 'top' | 'bottom' | 'left' | 'right'
18
- justify: 'start' | 'center' | 'end'
19
- padding: number
20
- // offset: [number, number]
21
- backgroundFill: ColorType
22
- backgroundStroke: ColorType
23
- textColorType: ColorType
24
- gap: number
25
- seriesList: Array<{
26
- listRectWidth: number
27
- listRectHeight: number
28
- listRectRadius: number
29
- }>
30
- // highlightEvent: boolean
31
- }
18
+ // export interface BaseLegendParams {
19
+ // position: 'top' | 'bottom' | 'left' | 'right'
20
+ // justify: 'start' | 'center' | 'end'
21
+ // padding: number
22
+ // // offset: [number, number]
23
+ // backgroundFill: ColorType
24
+ // backgroundStroke: ColorType
25
+ // textColorType: ColorType
26
+ // gap: number
27
+ // seriesList: Array<{
28
+ // listRectWidth: number
29
+ // listRectHeight: number
30
+ // listRectRadius: number
31
+ // }>
32
+ // // highlightEvent: boolean
33
+ // }
32
34
 
33
35
  interface BaseLegendContext {
34
36
  rootSelection: d3.Selection<any, unknown, any, unknown>
@@ -19,17 +19,19 @@ import type {
19
19
  GridContainerPosition,
20
20
  ChartParams,
21
21
  Layout,
22
- TransformData } from '../../lib/core-types'
22
+ TransformData
23
+ } from '../../lib/core-types'
24
+ import type { BaseLineAreasParams } from '../../lib/plugins-basic-types'
23
25
  import { getD3TransitionEase } from '../utils/d3Utils'
24
26
  import { getClassName, getUniID, getMinAndMaxValue } from '../utils/orbchartsUtils'
25
27
  import { gridGroupPositionFnObservable } from '../grid/gridObservables'
26
28
  import { gridSelectionsObservable } from '../grid/gridObservables'
27
29
 
28
- export interface BaseLineAreasParams {
29
- lineCurve: string
30
- // lineWidth: number
31
- linearGradientOpacity: [number, number]
32
- }
30
+ // export interface BaseLineAreasParams {
31
+ // lineCurve: string
32
+ // // lineWidth: number
33
+ // linearGradientOpacity: [number, number]
34
+ // }
33
35
 
34
36
  interface BaseLineAreasContext {
35
37
  selection: d3.Selection<any, unknown, any, unknown>
@@ -19,23 +19,25 @@ import type {
19
19
  GridContainerPosition,
20
20
  ChartParams,
21
21
  Layout,
22
- TransformData } from '../../lib/core-types'
22
+ TransformData
23
+ } from '../../lib/core-types'
24
+ import type { BaseLinesParams } from '../../lib/plugins-basic-types'
23
25
  import { getD3TransitionEase } from '../utils/d3Utils'
24
26
  import { getClassName, getUniID } from '../utils/orbchartsUtils'
25
27
  import { gridGroupPositionFnObservable } from '../grid/gridObservables'
26
28
  import { gridSelectionsObservable } from '../grid/gridObservables'
27
29
 
28
- export interface BaseLinesParams {
29
- // lineType: LineType
30
- lineCurve: string
31
- lineWidth: number
32
- // labelFn: (d: ComputedDatumSeries) => string
33
- // labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
34
- // labelStyleFn: (d: ComputedDatumSeries) => string
35
- // labelFontSizeFn: (d: ComputedDatumSeries) => number
36
- // labelColorFn: (d: ComputedDatumSeries) => string
37
- // labelPadding: number
38
- }
30
+ // export interface BaseLinesParams {
31
+ // // lineType: LineType
32
+ // lineCurve: string
33
+ // lineWidth: number
34
+ // // labelFn: (d: ComputedDatumSeries) => string
35
+ // // labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
36
+ // // labelStyleFn: (d: ComputedDatumSeries) => string
37
+ // // labelFontSizeFn: (d: ComputedDatumSeries) => number
38
+ // // labelColorFn: (d: ComputedDatumSeries) => string
39
+ // // labelPadding: number
40
+ // }
39
41
 
40
42
  interface BaseLinesContext {
41
43
  selection: d3.Selection<any, unknown, any, unknown>
@@ -18,25 +18,27 @@ import type {
18
18
  GridContainerPosition,
19
19
  TransformData,
20
20
  EventGrid,
21
- ColorType } from '../../lib/core-types'
21
+ ColorType
22
+ } from '../../lib/core-types'
23
+ import type { BaseValueAxisParams } from '../../lib/plugins-basic-types'
22
24
  import { parseTickFormatValue } from '../utils/d3Utils'
23
25
  import { getColor, getMinAndMaxValue, getClassName, getUniID } from '../utils/orbchartsUtils'
24
26
 
25
- export interface BaseValueAxisParams {
26
- labelOffset: [number, number]
27
- labelColorType: ColorType
28
- axisLineVisible: boolean
29
- axisLineColorType: ColorType
30
- ticks: number
31
- tickFormat: string | ((text: d3.NumberValue) => string)
32
- tickLineVisible: boolean
33
- tickPadding: number
34
- tickFullLine: boolean
35
- tickFullLineDasharray: string
36
- tickColorType: ColorType
37
- tickTextRotate: number
38
- tickTextColorType: ColorType
39
- }
27
+ // export interface BaseValueAxisParams {
28
+ // labelOffset: [number, number]
29
+ // labelColorType: ColorType
30
+ // axisLineVisible: boolean
31
+ // axisLineColorType: ColorType
32
+ // ticks: number
33
+ // tickFormat: string | ((text: d3.NumberValue) => string)
34
+ // tickLineVisible: boolean
35
+ // tickPadding: number
36
+ // tickFullLine: boolean
37
+ // tickFullLineDasharray: string
38
+ // tickColorType: ColorType
39
+ // tickTextRotate: number
40
+ // tickTextColorType: ColorType
41
+ // }
40
42
 
41
43
  interface BaseLinesContext {
42
44
  selection: d3.Selection<any, unknown, any, unknown>
@@ -10,7 +10,7 @@ import type {
10
10
  ValueAxisParams,
11
11
  ValueStackAxisParams,
12
12
  ScalingAreaParams,
13
- GridLegendParams } from './types'
13
+ GridLegendParams } from '../../lib/plugins-basic-types'
14
14
 
15
15
  export const DEFAULT_LINES_PARAMS: LinesParams = {
16
16
  lineCurve: 'curveLinear',
package/src/grid/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export * from './defaults'
2
- export * from './types'
2
+ // export * from './types'
3
3
  export { Lines } from './plugins/Lines'
4
4
  export { LineAreas } from './plugins/LineAreas'
5
5
  export { Bars } from './plugins/Bars'
@@ -26,7 +26,7 @@ import { measureTextWidth } from '../../utils/commonUtils'
26
26
  import { getColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
27
27
  import { d3EventObservable } from '../../utils/observables'
28
28
  import { gridGroupPosition } from '../gridObservables'
29
- import type { GroupAuxParams } from '../types'
29
+ import type { GroupAuxParams } from '../../../lib/plugins-basic-types'
30
30
  import { gridSelectionsObservable } from '../gridObservables'
31
31
  import { renderTspansOnAxis } from '../../utils/d3Graphics'
32
32
  import { LAYER_INDEX_OF_AUX } from '../../const'
@@ -11,7 +11,7 @@ import type {
11
11
  MultiValueStackAxisParams,
12
12
  OverlappingValueAxesParams,
13
13
  OverlappingValueStackAxesParams
14
- } from './types'
14
+ } from '../../lib/plugins-basic-types'
15
15
 
16
16
  export const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams = {
17
17
  position: 'right',
@@ -1,5 +1,5 @@
1
1
  export * from './defaults'
2
- export * from './types'
2
+ // export * from './types'
3
3
  export { MultiGridLegend } from './plugins/MultiGridLegend'
4
4
  export { MultiBars } from './plugins/MultiBars'
5
5
  export { MultiBarStack } from './plugins/MultiBarStack'
@@ -11,7 +11,7 @@ import {
11
11
  defineMultiGridPlugin, mergeOptionsWithDefault } from '../../../lib/core'
12
12
  import { DEFAULT_MULTI_GRID_LEGEND_PARAMS } from '../defaults'
13
13
  import { createBaseLegend } from '../../base/BaseLegend'
14
- import type { BaseLegendParams } from '../../base/BaseLegend'
14
+ import type { BaseLegendParams } from '../../../lib/plugins-basic-types'
15
15
  import { LAYER_INDEX_OF_INFO } from '../../const'
16
16
 
17
17
  const pluginName = 'MultiGridLegend'
@@ -1,4 +1,4 @@
1
- import type { ContainerPluginParams, TooltipParams } from './types'
1
+ import type { ContainerPluginParams, TooltipParams } from '../../lib/plugins-basic-types'
2
2
  import type { EventTypeMap, EventBaseSeriesValue, EventBaseGridValue, EventBaseCategoryValue } from '../../lib/core-types'
3
3
 
4
4
  export const CONTAINER_PLUGIN_PARAMS: ContainerPluginParams = {
@@ -1,4 +1,4 @@
1
1
  export * from './defaults'
2
- export * from './types'
2
+ // export * from './types'
3
3
  // export { Container } from './plugins/Container'
4
4
  export { Tooltip } from './plugins/Tooltip'
@@ -6,7 +6,7 @@ import type {
6
6
  PieLabelsParams,
7
7
  RoseParams,
8
8
  RoseLabelsParams,
9
- SeriesLegendParams } from './types'
9
+ SeriesLegendParams } from '../../lib/plugins-basic-types'
10
10
 
11
11
 
12
12
  export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
@@ -1,5 +1,5 @@
1
1
  export * from './defaults'
2
- export * from './types'
2
+ // export * from './types'
3
3
  export { Bubbles } from './plugins/Bubbles'
4
4
  export { Pie } from './plugins/Pie'
5
5
  export { PieEventTexts } from './plugins/PieEventTexts'
@@ -20,7 +20,7 @@ import type {
20
20
  SeriesContainerPosition } from '../../../lib/core-types'
21
21
  import {
22
22
  defineSeriesPlugin } from '../../../lib/core'
23
- import type { BubblesParams, ArcScaleType } from '../types'
23
+ import type { BubblesParams, ArcScaleType } from '../../../lib/plugins-basic-types'
24
24
  import { DEFAULT_BUBBLES_PARAMS } from '../defaults'
25
25
  import { renderCircleText } from '../../utils/d3Graphics'
26
26
  import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
@@ -17,7 +17,7 @@ import type {
17
17
  EventSeries,
18
18
  Layout } from '../../../lib/core-types'
19
19
  import type { PieDatum } from '../seriesUtils'
20
- import type { PieParams } from '../types'
20
+ import type { PieParams } from '../../../lib/plugins-basic-types'
21
21
  import {
22
22
  defineSeriesPlugin } from '../../../lib/core'
23
23
  import { DEFAULT_PIE_PARAMS } from '../defaults'
@@ -18,7 +18,7 @@ import type {
18
18
  SeriesContainerPosition,
19
19
  EventName,
20
20
  EventSeries } from '../../../lib/core-types'
21
- import type { PieEventTextsParams } from '../types'
21
+ import type { PieEventTextsParams } from '../../../lib/plugins-basic-types'
22
22
  import { DEFAULT_PIE_EVENT_TEXTS_PARAMS } from '../defaults'
23
23
  import { getD3TransitionEase } from '../../utils/d3Utils'
24
24
  import { getClassName } from '../../utils/orbchartsUtils'
@@ -17,7 +17,7 @@ import type {
17
17
  SeriesContainerPosition,
18
18
  EventSeries,
19
19
  ChartParams } from '../../../lib/core-types'
20
- import type { PieLabelsParams } from '../types'
20
+ import type { PieLabelsParams } from '../../../lib/plugins-basic-types'
21
21
  import type { PieDatum } from '../seriesUtils'
22
22
  import { DEFAULT_PIE_LABELS_PARAMS } from '../defaults'
23
23
  import { makePieData } from '../seriesUtils'
@@ -19,7 +19,7 @@ import type {
19
19
  EventSeries,
20
20
  Layout } from '../../../lib/core-types'
21
21
  import type { D3PieDatum } from '../seriesUtils'
22
- import type { RoseParams } from '../types'
22
+ import type { RoseParams } from '../../../lib/plugins-basic-types'
23
23
  import {
24
24
  defineSeriesPlugin } from '../../../lib/core'
25
25
  import { DEFAULT_ROSE_PARAMS } from '../defaults'
@@ -17,7 +17,7 @@ import type {
17
17
  SeriesContainerPosition,
18
18
  EventSeries,
19
19
  ChartParams } from '../../../lib/core-types'
20
- import type { RoseLabelsParams } from '../types'
20
+ import type { RoseLabelsParams } from '../../../lib/plugins-basic-types'
21
21
  import type { PieDatum } from '../seriesUtils'
22
22
  import { DEFAULT_ROSE_LABELS_PARAMS } from '../defaults'
23
23
  // import { makePieData } from '../seriesUtils'
@@ -1,4 +1,4 @@
1
- import type { TreeMapParams, TreeLegendParams } from './types'
1
+ import type { TreeMapParams, TreeLegendParams } from '../../lib/plugins-basic-types'
2
2
 
3
3
  export const DEFAULT_TREE_MAP_PARAMS: TreeMapParams = {
4
4
  paddingInner: 2,
package/src/tree/index.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from './defaults'
2
- export * from './types'
2
+ // export * from './types'
3
3
  export { TreeLegend } from './plugins/TreeLegend'
4
4
  export { TreeMap } from './plugins/TreeMap'
@@ -13,7 +13,7 @@ import type { DefinePluginConfig } from '../../../lib/core-types'
13
13
  import {
14
14
  defineTreePlugin } from '../../../lib/core'
15
15
  import type { Layout, ComputedDataTree, DataFormatterTree, ChartParams } from '../../../lib/core-types'
16
- import type { TreeMapParams } from '../types'
16
+ import type { TreeMapParams } from '../../../lib/plugins-basic-types'
17
17
  import { DEFAULT_TREE_MAP_PARAMS } from '../defaults'
18
18
  import { getClassName, getColor } from '../../utils/orbchartsUtils'
19
19
  import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
@@ -1,93 +0,0 @@
1
- import { ColorType } from '../../lib/core-types';
2
-
3
- export interface LinesParams {
4
- lineCurve: string;
5
- lineWidth: number;
6
- }
7
- export interface LineAreasParams {
8
- lineCurve: string;
9
- linearGradientOpacity: [number, number];
10
- }
11
- export interface DotsParams {
12
- radius: number;
13
- fillColorType: ColorType;
14
- strokeColorType: ColorType;
15
- strokeWidth: number;
16
- onlyShowHighlighted: boolean;
17
- }
18
- export interface GroupAuxParams {
19
- showLine: boolean;
20
- showLabel: boolean;
21
- lineDashArray: string;
22
- lineColorType: ColorType;
23
- labelColorType: ColorType;
24
- labelTextColorType: ColorType;
25
- labelTextFormat: string | ((text: any) => string);
26
- labelPadding: number;
27
- labelRotate: number;
28
- }
29
- export interface BarsParams {
30
- barWidth: number;
31
- barPadding: number;
32
- barGroupPadding: number;
33
- barRadius: number | boolean;
34
- }
35
- export interface BarsPNParams extends BarsParams {
36
- }
37
- export interface BarStackParams {
38
- barWidth: number;
39
- barGroupPadding: number;
40
- barRadius: number | boolean;
41
- }
42
- export interface BarsTriangleParams {
43
- barWidth: number;
44
- barPadding: number;
45
- barGroupPadding: number;
46
- linearGradientOpacity: [number, number];
47
- }
48
- export interface GroupAxisParams {
49
- labelOffset: [number, number];
50
- labelColorType: ColorType;
51
- axisLineVisible: boolean;
52
- axisLineColorType: ColorType;
53
- ticks: number | null | 'all';
54
- tickFormat: string | ((text: any) => string);
55
- tickLineVisible: boolean;
56
- tickPadding: number;
57
- tickFullLine: boolean;
58
- tickFullLineDasharray: string;
59
- tickColorType: ColorType;
60
- tickTextRotate: number;
61
- tickTextColorType: ColorType;
62
- }
63
- export interface ValueAxisParams {
64
- labelOffset: [number, number];
65
- labelColorType: ColorType;
66
- axisLineVisible: boolean;
67
- axisLineColorType: ColorType;
68
- ticks: number | null;
69
- tickFormat: string | ((text: d3.NumberValue) => string);
70
- tickLineVisible: boolean;
71
- tickPadding: number;
72
- tickFullLine: boolean;
73
- tickFullLineDasharray: string;
74
- tickColorType: ColorType;
75
- tickTextRotate: number;
76
- tickTextColorType: ColorType;
77
- }
78
- export interface ValueStackAxisParams extends ValueAxisParams {
79
- }
80
- export interface ScalingAreaParams {
81
- }
82
- export interface GridLegendParams {
83
- position: 'top' | 'bottom' | 'left' | 'right';
84
- justify: 'start' | 'center' | 'end';
85
- padding: number;
86
- backgroundFill: ColorType;
87
- backgroundStroke: ColorType;
88
- gap: number;
89
- listRectWidth: number;
90
- listRectHeight: number;
91
- listRectRadius: number;
92
- textColorType: ColorType;
93
- }
@@ -1,61 +0,0 @@
1
- import { BaseBarsParams } from '../base/BaseBars';
2
- import { BaseBarStackParams } from '../base/BaseBarStack';
3
- import { BaseBarsTriangleParams } from '../base/BaseBarsTriangle';
4
- import { BaseLinesParams } from '../base/BaseLines';
5
- import { BaseLineAreasParams } from '../base/BaseLineAreas';
6
- import { BaseDotsParams } from '../base/BaseDots';
7
- import { BaseGroupAxisParams } from '../base/BaseGroupAxis';
8
- import { BaseValueAxisParams } from '../base/BaseValueAxis';
9
- import { ColorType } from '../../lib/core-types';
10
-
11
- export interface MultiGridLegendParams {
12
- position: 'top' | 'bottom' | 'left' | 'right';
13
- justify: 'start' | 'center' | 'end';
14
- padding: number;
15
- backgroundFill: ColorType;
16
- backgroundStroke: ColorType;
17
- gap: number;
18
- listRectWidth: number;
19
- listRectHeight: number;
20
- listRectRadius: number;
21
- gridList: Array<{
22
- listRectWidth: number;
23
- listRectHeight: number;
24
- listRectRadius: number;
25
- }>;
26
- textColorType: ColorType;
27
- }
28
- export interface MultiGroupAxisParams extends BaseGroupAxisParams {
29
- gridIndexes: number[] | 'all';
30
- }
31
- export interface MultiValueAxisParams extends BaseValueAxisParams {
32
- gridIndexes: number[] | 'all';
33
- }
34
- export interface MultiValueStackAxisParams extends BaseValueAxisParams {
35
- gridIndexes: number[] | 'all';
36
- }
37
- export interface MultiBarsParams extends BaseBarsParams {
38
- gridIndexes: number[] | 'all';
39
- }
40
- export interface MultiBarStackParams extends BaseBarStackParams {
41
- gridIndexes: number[] | 'all';
42
- }
43
- export interface MultiBarsTriangleParams extends BaseBarsTriangleParams {
44
- gridIndexes: number[] | 'all';
45
- }
46
- export interface MultiLinesParams extends BaseLinesParams {
47
- gridIndexes: number[] | 'all';
48
- }
49
- export interface MultiLineAreasParams extends BaseLineAreasParams {
50
- gridIndexes: number[] | 'all';
51
- }
52
- export interface MultiDotsParams extends BaseDotsParams {
53
- gridIndexes: number[] | 'all';
54
- }
55
- export interface OverlappingValueAxesParams {
56
- firstAxis: BaseValueAxisParams;
57
- secondAxis: BaseValueAxisParams;
58
- gridIndexes: [number, number];
59
- }
60
- export interface OverlappingValueStackAxesParams extends OverlappingValueAxesParams {
61
- }
@@ -1,24 +0,0 @@
1
- import { ColorType, ChartType, EventTypeMap } from '../../lib/core-types';
2
-
3
- export interface ContainerPluginParams {
4
- header: {
5
- height: number;
6
- text: string[];
7
- textStyle: string[];
8
- };
9
- footer: {
10
- height: number;
11
- text: string[];
12
- textStyle: string[];
13
- };
14
- }
15
- export type TooltipParams = {
16
- backgroundColorType: ColorType;
17
- backgroundOpacity: number;
18
- strokeColorType: ColorType;
19
- textColorType: ColorType;
20
- offset: [number, number];
21
- padding: number;
22
- textRenderFn: (<T extends ChartType>(eventData: EventTypeMap<T>) => string[] | string) | null;
23
- svgRenderFn: (<T extends ChartType>(eventData: EventTypeMap<T>) => string) | null;
24
- };
@@ -1,73 +0,0 @@
1
- import { ComputedDatumSeries, EventSeries, EventName, ColorType } from '../../lib/core-types';
2
-
3
- export type ArcScaleType = 'area' | 'radius';
4
- export interface BubblesParams {
5
- force: {
6
- strength: number;
7
- velocityDecay: number;
8
- collisionSpacing: number;
9
- };
10
- bubbleText: {
11
- fillRate: number;
12
- lineHeight: number;
13
- lineLengthMin: number;
14
- };
15
- arcScaleType: ArcScaleType;
16
- }
17
- export interface PieParams {
18
- outerRadius: number;
19
- innerRadius: number;
20
- outerRadiusWhileHighlight: number;
21
- startAngle: number;
22
- endAngle: number;
23
- padAngle: number;
24
- strokeColorType: ColorType;
25
- strokeWidth: number;
26
- cornerRadius: number;
27
- }
28
- export interface PieEventTextsParams {
29
- eventFn: (d: EventSeries, eventName: EventName, t: number) => string[];
30
- textAttrs: Array<{
31
- [key: string]: string | number;
32
- }>;
33
- textStyles: Array<{
34
- [key: string]: string | number;
35
- }>;
36
- }
37
- export interface PieLabelsParams {
38
- outerRadius: number;
39
- outerRadiusWhileHighlight: number;
40
- startAngle: number;
41
- endAngle: number;
42
- labelCentroid: number;
43
- labelFn: ((d: ComputedDatumSeries) => string);
44
- labelColorType: ColorType;
45
- }
46
- export interface RoseParams {
47
- outerRadius: number;
48
- padAngle: number;
49
- strokeColorType: ColorType;
50
- strokeWidth: number;
51
- cornerRadius: number;
52
- arcScaleType: ArcScaleType;
53
- angleIncreaseWhileHighlight: number;
54
- }
55
- export interface RoseLabelsParams {
56
- outerRadius: number;
57
- labelCentroid: number;
58
- labelFn: ((d: ComputedDatumSeries) => string);
59
- labelColorType: ColorType;
60
- arcScaleType: ArcScaleType;
61
- }
62
- export interface SeriesLegendParams {
63
- position: 'top' | 'bottom' | 'left' | 'right';
64
- justify: 'start' | 'center' | 'end';
65
- padding: number;
66
- backgroundFill: ColorType;
67
- backgroundStroke: ColorType;
68
- gap: number;
69
- listRectWidth: number;
70
- listRectHeight: number;
71
- listRectRadius: number;
72
- textColorType: ColorType;
73
- }