forked from p96170835/amis
112 lines
4.3 KiB
JSON
112 lines
4.3 KiB
JSON
{
|
||
"$id": "https://houtai.baidu.com/v2/schemas/chart.json#",
|
||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
"allOf": [
|
||
{
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/chart.json#/definitions/common"
|
||
},
|
||
{
|
||
"additionalProperties": false,
|
||
"dependencies": {},
|
||
"patternProperties": {
|
||
"^(\\$ref|name|className|api|initFetch|initFetchOn|fetchOn|interval|style|config|width|height|messages)$": {}
|
||
},
|
||
"properties": {
|
||
"$schema": {
|
||
"format": "uri",
|
||
"type": "string",
|
||
"description": "绑定 JSON 格式说明,可忽略!"
|
||
},
|
||
"type": {
|
||
"const": "chart",
|
||
"description": "指定为 chart 类型",
|
||
"type": "string"
|
||
}
|
||
},
|
||
"required": [
|
||
"type"
|
||
],
|
||
"type": "object"
|
||
}
|
||
],
|
||
"definitions": {
|
||
"common": {
|
||
"description": "AMis Chart 渲染器,采用echarts渲染,格式说明。https://baidu.github.io/amis/docs/renderers#chart",
|
||
"properties": {
|
||
"$ref": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/$ref",
|
||
"description": "引用页面中的定义"
|
||
},
|
||
"api": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/api",
|
||
"description": "页面初始化的时候,可以设置一个 API 让其取拉取配置"
|
||
},
|
||
"className": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/className",
|
||
"description": "配置容器 className"
|
||
},
|
||
"config": {
|
||
"description": "配置echart的config",
|
||
"type": "object"
|
||
},
|
||
"fetchOn": {
|
||
"default": true,
|
||
"description": "是否拉取?通过表达式来决定, 条件满足才会拉取",
|
||
"type": "string"
|
||
},
|
||
"height": {
|
||
"description": "宽度设置"
|
||
},
|
||
"initFetch": {
|
||
"default": true,
|
||
"description": "是否默认就拉取?",
|
||
"type": "boolean"
|
||
},
|
||
"initFetchOn": {
|
||
"default": true,
|
||
"description": "是否默认就拉取?通过表达式来决定",
|
||
"type": "string"
|
||
},
|
||
"interval": {
|
||
"default": 0,
|
||
"description": "刷新时间",
|
||
"type": "number"
|
||
},
|
||
"messages": {
|
||
"additionalProperties": false,
|
||
"properties": {
|
||
"fetchFailed": {
|
||
"description": "用来配置当 api 拉取失败时提示的信息",
|
||
"type": "string"
|
||
},
|
||
"fetchSuccess": {
|
||
"description": "用来配置当 api 拉取成功时提示的信息,当然不设置的话就不会提示。",
|
||
"type": "string"
|
||
}
|
||
},
|
||
"type": "object"
|
||
},
|
||
"name": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/name",
|
||
"description": "给当前组件设定一个名,方便其他组件引用。"
|
||
},
|
||
"style": {
|
||
"description": "style样式",
|
||
"type": "object"
|
||
},
|
||
"width": {
|
||
"description": "宽度设置"
|
||
}
|
||
}
|
||
},
|
||
"test": {
|
||
"properties": {
|
||
"type": {
|
||
"const": "chart"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"description": "AMis Chart 渲染器,采用echarts渲染,格式说明。https://baidu.github.io/amis/docs/renderers#chart",
|
||
"type": "object"
|
||
} |