bytev-charts-beta1.0
Version:
测试版-1.0,版本号为小版本; 基于echarts和JavaScript及ES6封装的一个可以直接调用的图表组件库,内置主题设计,简单快捷,且支持用户自定义配置; npm 安装方式: npm install bytev-charts 若启动提示还需额外install插件,则运行 npm install @babel/runtime-corejs2 即可;
50 lines (34 loc) • 988 B
JavaScript
import _classCallCheck from "@babel/runtime-corejs2/helpers/classCallCheck";
import _defineProperty from "@babel/runtime-corejs2/helpers/defineProperty";
/*
* 组件option模板
* */
var ByteVModel =
/* * 通用 * */
//颜色池
/* * echarts类 * */
//背景色
//初始动画时长
//网格距离
//图例
//悬浮框
//轴线-x
//轴线-y
//系列
/* * other类 * */
function ByteVModel() {
_classCallCheck(this, ByteVModel);
_defineProperty(this, "id", "");
_defineProperty(this, "name", "");
_defineProperty(this, "color", []);
_defineProperty(this, "backgroundColor", 'transparent');
_defineProperty(this, "animationDuration", '');
_defineProperty(this, "grid", null);
_defineProperty(this, "legend", null);
_defineProperty(this, "tooltip", null);
_defineProperty(this, "xAxis", null);
_defineProperty(this, "yAxis", null);
_defineProperty(this, "series", []);
_defineProperty(this, "fontColor", null);
};
export { ByteVModel as default };