hexo-tag-echarts4

1.0.1 • Public • Published

hexo-tag-echarts

npm Travis David David

本插件基于Quentin Chenhexo-tag-echarts3修改。

Insert Echarts in Hexo by using tags.

Install

$ npm install hexo-tag-echarts4 --save

Usage

{% echarts 400 '85%' %}
\\TODO echarts contents goes here
{% endecharts %}
{% echarts 400 '85%' %}
var data = [];

for (var u = 0; u <= 10; u += 0.2) {
	var f = 12*u;
	f = Math.round(f*100)/100;
	data.push([u, f]);
}

option = {
	tooltip: {},
	xAxis: {
		name: 'U/V',
		interval: 1
	},
	yAxis: {
		name: 'f/Hz',
		interval: 10
	},
	series: [{
		data: data,
		type: 'line',
		lineStyle: {
			width: 4
		}
	}]
};
{% endecharts %}

For more details, visit Demo here.

Echarts 官方实例

Readme

Keywords

Package Sidebar

Install

npm i hexo-tag-echarts4

Weekly Downloads

4

Version

1.0.1

License

MIT

Unpacked Size

3.1 kB

Total Files

6

Last publish

Collaborators

  • gyx138