/**
* @constructor
*/
function XUILinePolar() {
}
XUILinePolar.prototype = {
//组件
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
/**
"legend":{
"title":"图例",
"name":"legend",
"type":"PUILegendInterface",
"index":0
}*/
/**
"polar":{
"title":"极坐标系",
"name":"polar",
"type":"PUIPolarInterface",
"index":0
}*/
/**
"tooltip":{
"title":"提示框",
"name":"tooltip",
"type":"PUITooltipInterface",
"index":0
}*/
/**
"angleAxis":{
"title":"角度轴",
"name":"angleAxis",
"type":"PUIAngleAxisInterface",
"index":0
}*/
/**
"radiusAxis":{
"title":"径向轴",
"name":"radiusAxis",
"type":"PUIRadiusAxisInterface",
"index":0
}*/
/**
"line":{
"title":"折线",
"name":"line",
"type":"PUILineInterface",
"index":0
}*/
//接口
/**
* 清除数据
*/
ClearData:function () {
},
/**
* 设置数据
* @param {Number} nData 数量
* @property {Number} LineData 2
*/
SetLineData:function (nData) {
},
/**
* 获取数据
* @param {Number} nIndex 下标
* @return {Array}
*/
GetData:function (nIndex) {
},
/**
* 增加数据
* @param {Number} nData 数量
* @param {String} strColor 颜色
*/
AddLineData:function (nData,strColor) {
},
}