mirror of
https://gitee.com/dromara/go-view.git
synced 2026-05-30 00:00:05 +08:00
feat: 初始化图表整体流程
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"legends": [
|
||||
{
|
||||
"visible": true,
|
||||
"position": "middle",
|
||||
"orient": "bottom",
|
||||
"item": {
|
||||
"visible": true,
|
||||
"align": "left",
|
||||
"label": {
|
||||
"style": {
|
||||
"fontSize": 16,
|
||||
"fill": "#B9B8CE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import themeJson from './global.theme.json'
|
||||
|
||||
type ThemeJsonType = typeof themeJson
|
||||
export interface vChartGlobalThemeJsonType extends Partial<ThemeJsonType> {
|
||||
dataset?: any
|
||||
[T: string]: any
|
||||
}
|
||||
|
||||
export const vChartGlobalThemeJson = { ...themeJson, dataset: null, renderer: 'svg' as const }
|
||||
Reference in New Issue
Block a user