/**
* @constructor
*/
function XUILargeScaleBar() {
}
XUILargeScaleBar.prototype = {
//组件
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
/**
"tooltip":{
"title":"提示框",
"name":"tooltip",
"type":"PUITooltipInterface",
"index":0
}*/
/**
"dataZoomInside":{
"title":"内置缩放组件",
"name":"dataZoomInside",
"type":"PUIDataZoomInsideInterface",
"index":0
}*/
/**
"dataZoomSlider":{
"title":"滑动缩放组件",
"name":"dataZoomSlider",
"type":"PUIDataZoomSliderInterface",
"index":1
}*/
/**
"xAxis":{
"title":"x轴",
"name":"xAxis",
"type":"PUIXAxisInterface",
"index":0
}*/
/**
"yAxis":{
"title":"y轴",
"name":"yAxis",
"type":"PUIYAxisInterface",
"index":0
}*/
/**
"bar":{
"title":"柱状图",
"name":"bar",
"type":"PUIBarInterface",
"index":0
}*/
//接口
/**
* 清除数据
*/
ClearAllData:function () {
},
/**
* 设置数据
* @param {Number} nData 数据
* @property {Number} BarValueData 500000
*/
SetBarValueData:function (nData) {
},
}