/**
* @constructor
*/
function XUIPopulationDensity() {
}
XUIPopulationDensity.prototype = {
//组件
/**
"radiusAxis":{
"title":"径向轴",
"name":"radiusAxis",
"type":"PUIRadiusAxisInterface",
"index":0
}*/
/**
"polar":{
"title":"图形",
"name":"polar",
"type":"PUIPolarInterface",
"index":0
}*/
/**
"angleAxis":{
"title":"角度轴",
"name":"angleAxis",
"type":"PUIAngleAxisInterface",
"index":0
}*/
/**
"scatter1":{
"title":"散点图1",
"name":"scatter1",
"type":"PUIScatterInterface",
"index":0
}*/
/**
"scatter2":{
"title":"散点图2",
"name":"scatter2",
"type":"PUIScatterInterface",
"index":1
}*/
/**
"scatter3":{
"title":"散点图3",
"name":"scatter3",
"type":"PUIScatterInterface",
"index":2
}*/
/**
"scatter4":{
"title":"散点图4",
"name":"scatter4",
"type":"PUIScatterInterface",
"index":3
}*/
//接口
/**
* 设置散点大小
* @param {Number} nSize 散点大小
* @property {property} ScatterSize 4
*/
SetScatterSize:function (nSize) {
},
/**
* 设置散点颜色
* @param {String} strColor1 散点颜色1
* @param {String} strColor2 散点颜色2
* @param {String} strColor3 散点颜色3
* @param {String} strColor4 散点颜色4
* @property {Collection} ScatterColor ["0xffffffff","0xff00BDDD","0xff0087DC","0xff17539D"]
*/
SetScatterColor:function (strColor1,strColor2,strColor3,strColor4) {
},
/**
* 传入随机数据
*/
Animation2:function () {
},
}