/**
* @constructor
*/
function XUIConcentrationBarLine() {
}
XUIConcentrationBarLine.prototype = {
//组件
/**
"xAxis1":{
"title":"x轴1",
"name":"xAxis1",
"type":"PUIXAxisInterface",
"index":0
}*/
/**
"xAxis2":{
"title":"x轴2",
"name":"xAxis2",
"type":"PUIXAxisInterface",
"index":1
}*/
/**
"yAxis1":{
"title":"y轴1",
"name":"yAxis1",
"type":"PUIYAxisInterface",
"index":0
}*/
/**
"yAxis2":{
"title":"y轴2",
"name":"yAxis2",
"type":"PUIYAxisInterface",
"index":1
}*/
/**
"grid":{
"title":"网格",
"name":"grid",
"type":"PUIGridInterface",
"index":0
}*/
/**
"legend":{
"title":"图例",
"name":"legend",
"type":"PUILegendInterface",
"index":0
}*/
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
/**
"line":{
"title":"折线图",
"name":"line",
"type":"PUILineInterface",
"index":0
}*/
/**
"pictorialBar":{
"title":"异型柱状图",
"name":"pictorialBar",
"type":"PUIPictorialBarInterface",
"index":1
}*/
//接口
/**
* 清空所有线
*/
RemoveAllLine:function () {
},
/**
* 清空所有异型柱状图
*/
RemoveAllPictorialBar:function () {
},
/**
* 清空x轴数据
*/
RemoveXAxisLableData:function () {
},
/**
* 设置x轴数据
* @param {Array} ArrLabel 标签数据
* @property {Array} XAxisLableDatas ["12:00","12:01","12:02"]
*/
SetXAxisLableData:function (ArrLabel) {
},
/**
* 添加x轴数据
* @param {String} strLabel 标签数据
*/
AddXAxisLableData:function (strLabel) {
},
/**
* 设置x轴类别显示间隔
* @param {Number} NumValue 数值
* @property {Number} IntervalValue 14
*/
SetXAxisLabelInterval:function (NumValue) {
},
/**
* 添加折线
* @param {String} strName 折线名称
* @property {String} LineName "firstLine"
*/
AddLineByName:function (strName) {
},
/**
* 添加异型柱状图
* @param {String} strName 柱状图名称
* @property {String} BarName "firstBar"
*/
AddPictorialBarByName:function (strName) {
},
/**
* 设置数据
* @param {String} strCategory 数据类别
* @param {Array} arrValue 数值
*/
AddDataArr:function (strCategory,arrValue) {
},
/**
* 设置甲烷浓度平均值
* @param {String} strMethaneData 甲烷浓度值
*/
SetMethaneData:function (strMethaneData) {
},
/**
* 设置硫化氢浓度平均值
* @param {String} strHydrogenData 硫化氢浓度
*/
SetHydrogenData:function (strHydrogenData) {
},
}