一个在博客中插入 echarts 的插件,相比于其他同款插件增加了更多选项
A hexo plugin for inserting echarts in your blog, customised js version and type.
警告:请尽量在同一个页面中使用同一个版本的同一个类型的 echarts js,否则可能会有意想不到的错误发生!
WARNING: Please try to use the same version of the same type of echarts js on the same page, otherwise unexpected errors may occur!
Install
1 | npm install hexo-tag-echarts-new --save |
Usage
1 | {% echarts width height [version] [type] [...other args] %} |
width
图表的宽度,必填,可填数字或百分比
The width of the echarts (required)
height
图表的高度,必填,可填数字或百分比
The height of the echarts (required)
version
图表的版本,选填,默认 5.5.1
The version of the echarts (optional, default 5.5.1)
type
图表 js 的类型,选填,默认不填,即为 echarts.min.js
可填类型 simple
,代表 echarts.simple.min.js
The type of the echarts js (optional, not filled by default, representing echarts.min.js
)
can be filled with types simple
, representing echarts.simple.min.js
other args
其他参数将会附加在插入的 script
标签上。例如,你可以插入 data-pjax
等属性
Other arguments will be attached to the inserted script
tag. For example, you can insert data-pjax
and other attributes
echarts options
tag
内部填入图表的 option
对象
Fill in the option
object of the chart inside the tag
,
Example
以下例子均来源于 echarts 官网示例
1 | {% echarts 85% 400 %} |
1 | {% echarts 500 400 simple %} |
1 | {% echarts 90% 400 %} |