@orbcharts/plugins-basic 3.0.0-alpha.79 → 3.0.0-beta.2
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.es.js +7876 -7406
- package/dist/orbcharts-plugins-basic.umd.js +124 -19
- package/dist/src/base/BaseTooltip.d.ts +14 -0
- package/dist/src/grid/defaults.d.ts +3 -2
- package/dist/src/grid/index.d.ts +2 -1
- package/dist/src/grid/plugins/GridTooltip.d.ts +1 -0
- package/dist/src/grid/plugins/GridZoom.d.ts +1 -0
- package/dist/src/multiGrid/defaults.d.ts +2 -1
- package/dist/src/multiGrid/index.d.ts +1 -0
- package/dist/src/multiGrid/plugins/MultiGridTooltip.d.ts +1 -0
- package/dist/src/noneData/index.d.ts +0 -1
- package/dist/src/series/defaults.d.ts +2 -1
- package/dist/src/series/index.d.ts +1 -0
- package/dist/src/series/plugins/SeriesTooltip.d.ts +1 -0
- package/dist/src/tree/defaults.d.ts +2 -1
- package/dist/src/tree/index.d.ts +1 -0
- package/dist/src/tree/plugins/TreeTooltip.d.ts +1 -0
- package/package.json +4 -4
- package/src/base/BaseDots.ts +4 -4
- package/src/base/BaseLegend.ts +75 -39
- package/src/base/BaseTooltip.ts +386 -0
- package/src/grid/defaults.ts +122 -5
- package/src/grid/index.ts +2 -1
- package/src/grid/plugins/GridLegend.ts +11 -0
- package/src/grid/plugins/GridTooltip.ts +66 -0
- package/src/grid/plugins/{ScalingArea.ts → GridZoom.ts} +5 -5
- package/src/multiGrid/defaults.ts +69 -3
- package/src/multiGrid/index.ts +1 -0
- package/src/multiGrid/plugins/MultiGridLegend.ts +11 -0
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -0
- package/src/noneData/index.ts +1 -1
- package/src/series/defaults.ts +61 -3
- package/src/series/index.ts +1 -0
- package/src/series/plugins/SeriesLegend.ts +11 -0
- package/src/series/plugins/SeriesTooltip.ts +66 -0
- package/src/tree/defaults.ts +59 -3
- package/src/tree/index.ts +2 -1
- package/src/tree/plugins/TreeLegend.ts +11 -0
- package/src/tree/plugins/TreeTooltip.ts +66 -0
- package/dist/src/grid/plugins/ScalingArea.d.ts +0 -1
@@ -0,0 +1,14 @@
|
|
1
|
+
import { Subject, Observable } from 'rxjs';
|
2
|
+
import { EventTypeMap, ChartParams, Layout } from '../../lib/core-types';
|
3
|
+
import { BaseTooltipParams } from '../../lib/plugins-basic-types';
|
4
|
+
import { BasePluginFn } from './types';
|
5
|
+
import * as d3 from 'd3';
|
6
|
+
interface BaseTooltipContext {
|
7
|
+
rootSelection: d3.Selection<any, unknown, any, unknown>;
|
8
|
+
fullParams$: Observable<BaseTooltipParams>;
|
9
|
+
fullChartParams$: Observable<ChartParams>;
|
10
|
+
layout$: Observable<Layout>;
|
11
|
+
event$: Subject<EventTypeMap<any>>;
|
12
|
+
}
|
13
|
+
export declare const createBaseTooltip: BasePluginFn<BaseTooltipContext>;
|
14
|
+
export {};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams,
|
1
|
+
import { LinesParams, LineAreasParams, GroupAuxParams, DotsParams, BarsParams, BarStackParams, BarsTriangleParams, GroupAxisParams, ValueAxisParams, ValueStackAxisParams, GridTooltipParams, GridZoomParams, 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;
|
@@ -11,5 +11,6 @@ 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
13
|
export declare const DEFAULT_VALUE_STACK_AXIS_PARAMS: ValueStackAxisParams;
|
14
|
-
export declare const
|
14
|
+
export declare const DEFAULT_GRID_ZOOM_PARAMS: GridZoomParams;
|
15
15
|
export declare const DEFAULT_GRID_LEGEND_PARAMS: GridLegendParams;
|
16
|
+
export declare const DEFAULT_GRID_TOOLTIP_PARAMS: GridTooltipParams;
|
package/dist/src/grid/index.d.ts
CHANGED
@@ -10,5 +10,6 @@ export { GridLegend } from './plugins/GridLegend';
|
|
10
10
|
export { GroupAxis } from './plugins/GroupAxis';
|
11
11
|
export { ValueAxis } from './plugins/ValueAxis';
|
12
12
|
export { ValueStackAxis } from './plugins/ValueStackAxis';
|
13
|
-
export {
|
13
|
+
export { GridTooltip } from './plugins/GridTooltip';
|
14
|
+
export { GridZoom } from './plugins/GridZoom';
|
14
15
|
export { GroupAux } from './plugins/GroupAux';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const GridTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GridTooltip", import('@orbcharts/plugins-basic-types').GridTooltipParams>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const GridZoom: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "GridZoom", import('@orbcharts/plugins-basic-types').GridZoomParams>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { MultiGridLegendParams, MultiBarsParams, MultiBarStackParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiValueAxisParams, MultiValueStackAxisParams, OverlappingValueAxesParams, OverlappingValueStackAxesParams } from '../../lib/plugins-basic-types';
|
1
|
+
import { MultiGridLegendParams, MultiBarsParams, MultiBarStackParams, MultiBarsTriangleParams, MultiLinesParams, MultiLineAreasParams, MultiDotsParams, MultiGroupAxisParams, MultiGridTooltipParams, MultiValueAxisParams, MultiValueStackAxisParams, OverlappingValueAxesParams, OverlappingValueStackAxesParams } 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;
|
@@ -12,3 +12,4 @@ 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
14
|
export declare const DEFAULT_OVERLAPPING_VALUE_STACK_AXES_PARAMS: OverlappingValueStackAxesParams;
|
15
|
+
export declare const DEFAULT_MULTI_GRID_TOOLTIP_PARAMS: MultiGridTooltipParams;
|
@@ -8,6 +8,7 @@ export { MultiLineAreas } from './plugins/MultiLineAreas';
|
|
8
8
|
export { MultiDots } from './plugins/MultiDots';
|
9
9
|
export { MultiGroupAxis } from './plugins/MultiGroupAxis';
|
10
10
|
export { MultiValueAxis } from './plugins/MultiValueAxis';
|
11
|
+
export { MultiGridTooltip } from './plugins/MultiGridTooltip';
|
11
12
|
export { MultiValueStackAxis } from './plugins/MultiValueStackAxis';
|
12
13
|
export { OverlappingValueAxes } from './plugins/OverlappingValueAxes';
|
13
14
|
export { OverlappingValueStackAxes } from './plugins/OverlappingValueStackAxes';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const MultiGridTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"multiGrid", "MultiGridTooltip", import('@orbcharts/plugins-basic-types').MultiGridTooltipParams>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams } from '../../lib/plugins-basic-types';
|
1
|
+
import { BubblesParams, PieParams, PieEventTextsParams, PieLabelsParams, RoseParams, RoseLabelsParams, SeriesLegendParams, SeriesTooltipParams } from '../../lib/plugins-basic-types';
|
2
2
|
|
3
3
|
export declare const DEFAULT_BUBBLES_PARAMS: BubblesParams;
|
4
4
|
export declare const DEFAULT_PIE_PARAMS: PieParams;
|
@@ -7,3 +7,4 @@ export declare const DEFAULT_PIE_LABELS_PARAMS: PieLabelsParams;
|
|
7
7
|
export declare const DEFAULT_ROSE_PARAMS: RoseParams;
|
8
8
|
export declare const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams;
|
9
9
|
export declare const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams;
|
10
|
+
export declare const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const SeriesTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"series", "SeriesTooltip", import('@orbcharts/plugins-basic-types').SeriesTooltipParams>;
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { TreeMapParams, TreeLegendParams } from '../../lib/plugins-basic-types';
|
1
|
+
import { TreeMapParams, TreeLegendParams, TreeTooltipParams } from '../../lib/plugins-basic-types';
|
2
2
|
|
3
3
|
export declare const DEFAULT_TREE_MAP_PARAMS: TreeMapParams;
|
4
4
|
export declare const DEFAULT_TREE_LEGEND_PARAMS: TreeLegendParams;
|
5
|
+
export declare const DEFAULT_TREE_TOOLTIP_PARAMS: TreeTooltipParams;
|
package/dist/src/tree/index.d.ts
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export declare const TreeTooltip: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"tree", "TreeTooltip", import('@orbcharts/plugins-basic-types').TreeTooltipParams>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orbcharts/plugins-basic",
|
3
|
-
"version": "3.0.0-
|
3
|
+
"version": "3.0.0-beta.2",
|
4
4
|
"description": "plugins for OrbCharts",
|
5
5
|
"author": "Blue Planet Inc.",
|
6
6
|
"license": "Apache-2.0",
|
@@ -35,9 +35,9 @@
|
|
35
35
|
"vite-plugin-dts": "^3.7.3"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
|
-
"@orbcharts/core": "^3.0.0-
|
39
|
-
"@orbcharts/core-types": "^3.0.0-
|
40
|
-
"@orbcharts/plugins-basic-types": "^3.0.0-
|
38
|
+
"@orbcharts/core": "^3.0.0-beta.1",
|
39
|
+
"@orbcharts/core-types": "^3.0.0-beta.1",
|
40
|
+
"@orbcharts/plugins-basic-types": "^3.0.0-beta.2",
|
41
41
|
"d3": "^7.8.5",
|
42
42
|
"rxjs": "^7.8.1"
|
43
43
|
}
|
package/src/base/BaseDots.ts
CHANGED
@@ -394,7 +394,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
|
|
394
394
|
|
395
395
|
data.graphicSelection
|
396
396
|
.on('mouseover', (event, datum) => {
|
397
|
-
event.stopPropagation()
|
397
|
+
// event.stopPropagation()
|
398
398
|
|
399
399
|
event$.next({
|
400
400
|
type: 'grid',
|
@@ -414,7 +414,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
|
|
414
414
|
})
|
415
415
|
})
|
416
416
|
.on('mousemove', (event, datum) => {
|
417
|
-
event.stopPropagation()
|
417
|
+
// event.stopPropagation()
|
418
418
|
|
419
419
|
event$.next({
|
420
420
|
type: 'grid',
|
@@ -434,7 +434,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
|
|
434
434
|
})
|
435
435
|
})
|
436
436
|
.on('mouseout', (event, datum) => {
|
437
|
-
event.stopPropagation()
|
437
|
+
// event.stopPropagation()
|
438
438
|
|
439
439
|
event$.next({
|
440
440
|
type: 'grid',
|
@@ -454,7 +454,7 @@ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string
|
|
454
454
|
})
|
455
455
|
})
|
456
456
|
.on('click', (event, datum) => {
|
457
|
-
event.stopPropagation()
|
457
|
+
// event.stopPropagation()
|
458
458
|
|
459
459
|
event$.next({
|
460
460
|
type: 'grid',
|
package/src/base/BaseLegend.ts
CHANGED
@@ -5,6 +5,7 @@ import {
|
|
5
5
|
switchMap,
|
6
6
|
takeUntil,
|
7
7
|
shareReplay,
|
8
|
+
distinctUntilChanged,
|
8
9
|
Observable,
|
9
10
|
Subject } from 'rxjs'
|
10
11
|
import type { BasePluginFn } from './types'
|
@@ -101,9 +102,6 @@ function getSeriesColor (seriesIndex: number, fullChartParams: ChartParams) {
|
|
101
102
|
return fullChartParams.colors[fullChartParams.colorScheme].series[colorIndex]
|
102
103
|
}
|
103
104
|
|
104
|
-
function getLegendColor () {
|
105
|
-
|
106
|
-
}
|
107
105
|
|
108
106
|
export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: string, {
|
109
107
|
rootSelection,
|
@@ -166,17 +164,52 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
|
|
166
164
|
})
|
167
165
|
)
|
168
166
|
|
169
|
-
const
|
167
|
+
const position$: Observable<"top" | "bottom" | "left" | "right"> = fullParams$.pipe(
|
170
168
|
takeUntil(destroy$),
|
171
169
|
map(data => {
|
172
|
-
|
170
|
+
const position: "top" | "bottom" | "left" | "right" = data.placement === 'top' || data.placement === 'top-start' || data.placement === 'top-end'
|
171
|
+
? 'top'
|
172
|
+
: data.placement === 'bottom' || data.placement === 'bottom-start' || data.placement === 'bottom-end'
|
173
|
+
? 'bottom'
|
174
|
+
: data.placement === 'left' || data.placement === 'left-start' || data.placement === 'left-end'
|
175
|
+
? 'left'
|
176
|
+
: 'right'
|
177
|
+
return position
|
178
|
+
}),
|
179
|
+
distinctUntilChanged((a, b) => a === b),
|
180
|
+
shareReplay(1)
|
181
|
+
)
|
182
|
+
|
183
|
+
const justify$: Observable<"start" | "center" | "end"> = fullParams$.pipe(
|
184
|
+
takeUntil(destroy$),
|
185
|
+
map(data => {
|
186
|
+
const justify: "start" | "center" | "end" = data.placement === 'top-start' || data.placement === 'bottom-start' || data.placement === 'left-start' || data.placement === 'right-start'
|
187
|
+
? 'start'
|
188
|
+
: data.placement === 'top-end' || data.placement === 'bottom-end' || data.placement === 'left-end' || data.placement === 'right-end'
|
189
|
+
? 'end'
|
190
|
+
: data.placement === 'top' || data.placement === 'bottom' || data.placement === 'left' || data.placement === 'right'
|
191
|
+
? 'center'
|
192
|
+
: 'center'
|
193
|
+
return justify
|
194
|
+
}),
|
195
|
+
distinctUntilChanged((a, b) => a === b),
|
196
|
+
shareReplay(1)
|
197
|
+
)
|
198
|
+
|
199
|
+
const lineDirection$ = position$.pipe(
|
200
|
+
takeUntil(destroy$),
|
201
|
+
map(data => {
|
202
|
+
return data === 'bottom' || data === 'top'
|
173
203
|
? 'row'
|
174
204
|
: 'column'
|
175
|
-
})
|
205
|
+
}),
|
206
|
+
distinctUntilChanged((a, b) => a === b),
|
207
|
+
shareReplay(1)
|
176
208
|
)
|
177
209
|
|
178
210
|
const lineMaxSize$ = combineLatest({
|
179
211
|
fullParams: fullParams$,
|
212
|
+
position: position$,
|
180
213
|
layout: layout$
|
181
214
|
}).pipe(
|
182
215
|
takeUntil(destroy$),
|
@@ -184,7 +217,7 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
|
|
184
217
|
map(data => {
|
185
218
|
const ourterSize = (data.fullParams.padding) * 2 + (data.fullParams.gap * 2) // 卡片離場景的間距 & 卡片內的間距
|
186
219
|
|
187
|
-
return data.
|
220
|
+
return data.position === 'bottom' || data.position === 'top'
|
188
221
|
? data.layout.rootWidth - ourterSize
|
189
222
|
: data.layout.rootHeight - ourterSize
|
190
223
|
})
|
@@ -192,47 +225,48 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
|
|
192
225
|
|
193
226
|
const rootPosition$ = combineLatest({
|
194
227
|
layout: layout$,
|
195
|
-
|
228
|
+
position: position$,
|
229
|
+
justify: justify$
|
196
230
|
}).pipe(
|
197
231
|
takeUntil(destroy$),
|
198
232
|
switchMap(async d => d),
|
199
233
|
map(data => {
|
200
234
|
let x = 0
|
201
235
|
let y = 0
|
202
|
-
if (data.
|
236
|
+
if (data.position === 'bottom') {
|
203
237
|
y = data.layout.rootHeight
|
204
|
-
if (data.
|
238
|
+
if (data.justify === 'start') {
|
205
239
|
x = 0
|
206
|
-
} else if (data.
|
240
|
+
} else if (data.justify === 'center') {
|
207
241
|
x = data.layout.rootWidth / 2
|
208
|
-
} else if (data.
|
242
|
+
} else if (data.justify === 'end') {
|
209
243
|
x = data.layout.rootWidth
|
210
244
|
}
|
211
|
-
} else if (data.
|
245
|
+
} else if (data.position === 'right') {
|
212
246
|
x = data.layout.rootWidth
|
213
|
-
if (data.
|
247
|
+
if (data.justify === 'start') {
|
214
248
|
y = 0
|
215
|
-
} else if (data.
|
249
|
+
} else if (data.justify === 'center') {
|
216
250
|
y = data.layout.rootHeight / 2
|
217
|
-
} else if (data.
|
251
|
+
} else if (data.justify === 'end') {
|
218
252
|
y = data.layout.rootHeight
|
219
253
|
}
|
220
|
-
} else if (data.
|
254
|
+
} else if (data.position === 'top') {
|
221
255
|
y = 0
|
222
|
-
if (data.
|
256
|
+
if (data.justify === 'start') {
|
223
257
|
x = 0
|
224
|
-
} else if (data.
|
258
|
+
} else if (data.justify === 'center') {
|
225
259
|
x = data.layout.rootWidth / 2
|
226
|
-
} else if (data.
|
260
|
+
} else if (data.justify === 'end') {
|
227
261
|
x = data.layout.rootWidth
|
228
262
|
}
|
229
|
-
} else if (data.
|
263
|
+
} else if (data.position === 'left') {
|
230
264
|
x = 0
|
231
|
-
if (data.
|
265
|
+
if (data.justify === 'start') {
|
232
266
|
y = 0
|
233
|
-
} else if (data.
|
267
|
+
} else if (data.justify === 'center') {
|
234
268
|
y = data.layout.rootHeight / 2
|
235
|
-
} else if (data.
|
269
|
+
} else if (data.justify === 'end') {
|
236
270
|
y = data.layout.rootHeight
|
237
271
|
}
|
238
272
|
}
|
@@ -432,6 +466,8 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
|
|
432
466
|
|
433
467
|
const legendCard$: Observable<LegendCard> = combineLatest({
|
434
468
|
fullParams: fullParams$,
|
469
|
+
position: position$,
|
470
|
+
justify: justify$,
|
435
471
|
lengendList: lengendList$
|
436
472
|
}).pipe(
|
437
473
|
takeUntil(destroy$),
|
@@ -442,47 +478,47 @@ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: st
|
|
442
478
|
let translateX = 0
|
443
479
|
let translateY = 0
|
444
480
|
|
445
|
-
if (data.
|
446
|
-
if (data.
|
481
|
+
if (data.position === 'left') {
|
482
|
+
if (data.justify === 'start') {
|
447
483
|
translateX = data.fullParams.padding
|
448
484
|
translateY = data.fullParams.padding
|
449
|
-
} else if (data.
|
485
|
+
} else if (data.justify === 'center') {
|
450
486
|
translateX = data.fullParams.padding
|
451
487
|
translateY = - height / 2
|
452
|
-
} else if (data.
|
488
|
+
} else if (data.justify === 'end') {
|
453
489
|
translateX = data.fullParams.padding
|
454
490
|
translateY = - height - data.fullParams.padding
|
455
491
|
}
|
456
|
-
} else if (data.
|
457
|
-
if (data.
|
492
|
+
} else if (data.position === 'right') {
|
493
|
+
if (data.justify === 'start') {
|
458
494
|
translateX = - width - data.fullParams.padding
|
459
495
|
translateY = data.fullParams.padding
|
460
|
-
} else if (data.
|
496
|
+
} else if (data.justify === 'center') {
|
461
497
|
translateX = - width - data.fullParams.padding
|
462
498
|
translateY = - height / 2
|
463
|
-
} else if (data.
|
499
|
+
} else if (data.justify === 'end') {
|
464
500
|
translateX = - width - data.fullParams.padding
|
465
501
|
translateY = - height - data.fullParams.padding
|
466
502
|
}
|
467
|
-
} else if (data.
|
468
|
-
if (data.
|
503
|
+
} else if (data.position === 'top') {
|
504
|
+
if (data.justify === 'start') {
|
469
505
|
translateX = data.fullParams.padding
|
470
506
|
translateY = data.fullParams.padding
|
471
|
-
} else if (data.
|
507
|
+
} else if (data.justify === 'center') {
|
472
508
|
translateX = - width / 2
|
473
509
|
translateY = data.fullParams.padding
|
474
|
-
} else if (data.
|
510
|
+
} else if (data.justify === 'end') {
|
475
511
|
translateX = - width - data.fullParams.padding
|
476
512
|
translateY = data.fullParams.padding
|
477
513
|
}
|
478
514
|
} else {
|
479
|
-
if (data.
|
515
|
+
if (data.justify === 'start') {
|
480
516
|
translateX = data.fullParams.padding
|
481
517
|
translateY = - height - data.fullParams.padding
|
482
|
-
} else if (data.
|
518
|
+
} else if (data.justify === 'center') {
|
483
519
|
translateX = - width / 2
|
484
520
|
translateY = - height - data.fullParams.padding
|
485
|
-
} else if (data.
|
521
|
+
} else if (data.justify === 'end') {
|
486
522
|
translateX = - width - data.fullParams.padding
|
487
523
|
translateY = - height - data.fullParams.padding
|
488
524
|
}
|