/**
* @constructor
*/
function XUIVoronoi() {
}
XUIVoronoi.prototype = {
//接口
/**
* 清除数据
*/
ClearData:function () {
},
/**
* 根据索引修改数据
* @param {Number} nIndex 索引0~100
* @param {Number} nValue 值
* @property {Collection} setvaluebyindex [-1,0]
*/
SetValueByIndex:function (nIndex,nValue) {
},
/**
* 根据索引删除一个数据
* @param {Number} nIndex
* @property {Number} DelDataByIndex -1
*/
DelDataByIndex:function (nIndex) {
},
/**
* 设置文字大小
* @param {Number} nSize
* @property {Number} TextSize 12
*/
SetTextSize:function (nSize) {
},
/**
* 设置文字颜色
* @param {String} strColor
* @property {Color} TextColor "0xffffffff"
*/
SetTextColor:function (strColor) {
},
}