/**
* @constructor
*/
function XUIDoubleBrokenLine() {
}
XUIDoubleBrokenLine.prototype = {
//组件
/**
"xAxis0":{
"title":"x轴0",
"name":"xAxis0",
"type":"PUIXAxisInterface",
"index":0
}*/
/**
"xAxis1":{
"title":"x轴1",
"name":"xAxis1",
"type":"PUIXAxisInterface",
"index":1
}*/
/**
"xAxis2":{
"title":"x轴2",
"name":"xAxis2",
"type":"PUIXAxisInterface",
"index":2
}*/
/**
"yAxis0":{
"title":"y轴0",
"name":"yAxis0",
"type":"PUIYAxisInterface",
"index":0
}*/
/**
"yAxis1":{
"title":"y轴1",
"name":"yAxis1",
"type":"PUIYAxisInterface",
"index":1
}*/
/**
"yAxis2":{
"title":"y轴2",
"name":"yAxis2",
"type":"PUIYAxisInterface",
"index":2
}*/
/**
"bar0":{
"title":"柱状图0",
"name":"bar0",
"type":"PUIBarInterface",
"index":0
}*/
/**
"bar1":{
"title":"柱状图1",
"name":"bar1",
"type":"PUIBarInterface",
"index":2
}*/
/**
"scatter0":{
"title":"散点图0",
"name":"scatter0",
"type":"PUIScatterInterface",
"index":1
}*/
/**
"scatter1":{
"title":"散点图1",
"name":"scatter1",
"type":"PUIScatterInterface",
"index":3
}*/
//接口
/**
* 设置控件背景颜色
* @param {String} strBgColor 背景颜色
* @property {Color} BgColor ""
*/
SetBgColor:function (strBgColor) {
},
/**
* 设置X轴文本
* @param {Array} arrXLabel 数据
* @property {Array} XLabel ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"]
*/
SetXLabel:function (arrXLabel) {
},
/**
* 获取X轴文本
* @return {Array} X轴文本
*/
GetXLabel:function () {
},
/**
* 设置上半部分数据值
* @param {Array} arrData 数据
* @property {Array} TopData [120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70]
*/
SetTopData:function (arrData) {
},
/**
* 获取上半部分数据值
* @return {Array}
*/
GetTopData:function () {
},
/**
* 清除上方数据
*/
ClearTopData:function () {
},
/**
* 设置下半部分数据值
* @param {Array} arrData 数据
* @property {Array} BottomData [120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70]
*/
SetBottomData:function (arrData) {
},
/**
* 获取下半部分数据值
* @return {Array}
*/
GetBottomData:function () {
},
/**
* 清除下方数据
*/
ClearBottomData:function () {
},
/**
* 清除数据
*/
ClearAllData:function () {
},
/**
* 通过x轴文本修改上半部数据
* @param {String} strXLabel x轴文本
* @param {Number} nValue 数据
*/
SetTopValueByXlabel:function (strXLabel,nValue) {
},
/**
* 通过x轴文本修改下半部数据
* @param {String} strXLabel x轴文本
* @param {Number} nValue 数据
*/
SetBottompValueByXlabel:function (strXLabel,nValue) {
},
}