PHP Classes

File: vendors/gentelella/vendors/echarts/src/chart/line/LineSeries.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/echarts/src/chart/line/LineSeries.js   Download  
File: vendors/gentelella/vendors/echarts/src/chart/line/LineSeries.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 1,967 bytes
 

Contents

Class file image Download
define(function(require) { 'use strict'; var createListFromArray = require('../helper/createListFromArray'); var SeriesModel = require('../../model/Series'); return SeriesModel.extend({ type: 'series.line', dependencies: ['grid', 'polar'], getInitialData: function (option, ecModel) { return createListFromArray(option.data, this, ecModel); }, defaultOption: { zlevel: 0, // ???? z: 2, // ???? coordinateSystem: 'cartesian2d', legendHoverLink: true, hoverAnimation: true, // stack: null xAxisIndex: 0, yAxisIndex: 0, polarIndex: 0, // If clip the overflow value clipOverflow: true, label: { normal: { position: 'top' } }, // itemStyle: { // normal: {}, // emphasis: {} // }, lineStyle: { normal: { width: 2, type: 'solid' } }, // areaStyle: {}, smooth: false, smoothMonotone: null, // ?????? symbol: 'emptyCircle', // ?????? symbolSize: 4, // ???????? symbolRotate: null, // ???? symbol, ??? tooltip hover ????? showSymbol: true, // ????????????????????????? showAllSymbol: false, // ?????? connectNulls: false, // ?????'average', 'max', 'min', 'sum' sampling: 'none', animationEasing: 'linear' } }); });