/**
* @constructor
*/
function XUIInvasiveBloodPressure() {
}
XUIInvasiveBloodPressure.prototype = {
//组件
/**
"xAxis":{
"title":"x轴",
"name":"xAxis",
"type":"PUIXAxisInterface",
"index":0
}*/
/**
"yAxis":{
"title":"y轴",
"name":"yAxis",
"type":"PUIYAxisInterface",
"index":0
}*/
/**
"line0":{
"title":"折线图0",
"name":"line0",
"type":"PUILineInterface",
"index":0
}*/
/**
"line1":{
"title":"折线图1",
"name":"line1",
"type":"PUILineInterface",
"index":1
}*/
/**
"line2":{
"title":"折线图2",
"name":"line2",
"type":"PUILineInterface",
"index":2
}*/
/**
"line3":{
"title":"折线图3",
"name":"line3",
"type":"PUILineInterface",
"index":3
}*/
//接口
/**
*设置高压数据
* @param {Array} hSeries 高血压
* @property {Array} hSeries [130, 143, 125, 104, 154, 97, 122, 90, 130, 106, 157, 111, 102, 129, 147, 137, 118, 101, 103, 154]
*/
SetHighData:function (hSeries) {
},
/**
*设置低压数据
* @param {Array} lSeries 低血压
* @property {Array} lSeries [67, 74, 71, 50, 60, 43, 62, 55, 57, 43, 50, 46, 43, 75, 40, 42, 53, 42, 68, 40]
*/
SetLowData:function (lSeries) {
},
}