/**
* @constructor
*/
function XUITrafficFlowVehicles() {
}
XUITrafficFlowVehicles.prototype = {
//组件
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
/**
"legend":{
"title":"图例",
"name":"legend",
"type":"PUILegendInterface",
"index":0
}*/
/**
"tooltip":{
"title":"提示框",
"name":"tooltip",
"type":"PUITooltipInterface",
"index":0
}*/
/**
"yAxis":{
"title":"y轴",
"name":"yAxis",
"type":"PUIYAxisInterface",
"index":0
}*/
/**
"pictorialBar1":{
"title":"象形柱图1",
"name":"pictorialBar1",
"type":"PUIPictorialBarInterface",
"index":0
}*/
/**
"pictorialBar2":{
"title":"象形柱图2",
"name":"pictorialBar1",
"type":"PUIPictorialBarInterface",
"index":1
}*/
//接口
/**
* 增加一组数据
* @param {String} dataName 数据名
* @param {Array} newData 数据
* @param {String} newColor 数据颜色
*/
AddGroupData:function (dataName,newData,newColor) {
},
/**
* 增加一个数据
* @param {String} dataName 数据名
* @param {Array} newData 数据
* @param {String} newSymbol 符号
*/
AddOneData:function (dataName,newData,newSymbol) {
},
/**
* 删除一个数据
* @param {Number} nIndex 下标
*/
ClearOneData:function (nIndex) {
},
/**
* 删除一组数据
* @param {Number} nIndex 下标
*/
ClearGroupData:function (nIndex) {
},
/**
* 删除所有数据
*/
ClearAllData:function () {
},
/**
* 获得所有数据
*/
GetAllData:function () {
},
/**
* 获得一组数据
* @param {Number} nIndex 下标
*/
GetGroupData:function (nIndex) {
},
/**
* 获得一个数据
* @param {Number} nIndex 下标
*/
GetOneData:function (nIndex) {
},
/**
* 修改所有数据
* @param {Array} newData 新数据
*/
ChangeAllData:function (newData) {
},
/**
* 修改一组数据
* @param {Number} nIndex 下标
* @param {Array} newData 新数据
*/
ChangeGroupData:function (nIndex,newData) {
},
/**
* 修改一个数据
* @param {Number} nIndex 下标
* @param {Array} newData 新数据
*/
ChangeOneData:function (nIndex,newData) {
},
}