PHP Classes

File: vendors/echarts/src/chart/scatter/ScatterSeries.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/echarts/src/chart/scatter/ScatterSeries.js   Download  
File: vendors/echarts/src/chart/scatter/ScatterSeries.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,925 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.scatter', dependencies: ['grid', 'polar'], getInitialData: function (option, ecModel) { var list = createListFromArray(option.data, this, ecModel); return list; }, defaultOption: { coordinateSystem: 'cartesian2d', zlevel: 0, z: 2, legendHoverLink: true, hoverAnimation: true, // Cartesian coordinate system xAxisIndex: 0, yAxisIndex: 0, // Polar coordinate system polarIndex: 0, // Geo coordinate system geoIndex: 0, // symbol: null, // ???? symbolSize: 10, // ????????????????????????????symbolSize * 2 // symbolRotate: null, // ?????? large: false, // Available when large is true largeThreshold: 2000, // label: { // normal: { // show: false // distance: 5, // formatter: ?????????Tooltip.formatter???????? // position: ???????????'top'??????'right'???? // 'inside'|'left'|'right'|'top'|'bottom' // textStyle: null // ?????????????TEXTSTYLE // } // }, itemStyle: { normal: { opacity: 0.8 // color: ?? } } } }); });