/**
* @constructor
*/
function XUICalendarPie() {
}
XUICalendarPie.prototype = {
//组件
/**
"scatter":{
"title":"散点图",
"name":"scatter",
"type":"PUIScatterInterface",
"index":0
}*/
/**
"pie1":{
"title":"饼图1",
"name":"pie1",
"type":"PUIPieInterface",
"index":1
}*/
/**
"pie2":{
"title":"饼图2",
"name":"pie2",
"type":"PUIPieInterface",
"index":2
}*/
/**
"pie3":{
"title":"饼图3",
"name":"pie3",
"type":"PUIPieInterface",
"index":3
}*/
/**
"pie4":{
"title":"饼图4",
"name":"pie4",
"type":"PUIPieInterface",
"index":4
}*/
/**
"pie5":{
"title":"饼图5",
"name":"pie5",
"type":"PUIPieInterface",
"index":5
}*/
/**
"pie6":{
"title":"饼图6",
"name":"pie6",
"type":"PUIPieInterface",
"index":6
}*/
/**
"pie7":{
"title":"饼图7",
"name":"pie7",
"type":"PUIPieInterface",
"index":7
}*/
/**
"pie8":{
"title":"饼图8",
"name":"pie8",
"type":"PUIPieInterface",
"index":8
}*/
/**
"pie9":{
"title":"饼图9",
"name":"pie9",
"type":"PUIPieInterface",
"index":9
}*/
/**
"pie10":{
"title":"饼图10",
"name":"pie10",
"type":"PUIPieInterface",
"index":10
}*/
/**
"pie11":{
"title":"饼图11",
"name":"pie11",
"type":"PUIPieInterface",
"index":11
}*/
/**
"pie12":{
"title":"饼图12",
"name":"pie12",
"type":"PUIPieInterface",
"index":12
}*/
/**
"pie13":{
"title":"饼图13",
"name":"pie13",
"type":"PUIPieInterface",
"index":13
}*/
/**
"pie14":{
"title":"饼图14",
"name":"pie14",
"type":"PUIPieInterface",
"index":14
}*/
/**
"pie15":{
"title":"饼图15",
"name":"pie15",
"type":"PUIPieInterface",
"index":15
}*/
/**
"pie16":{
"title":"饼图16",
"name":"pie16",
"type":"PUIPieInterface",
"index":16
}*/
/**
"pie17":{
"title":"饼图17",
"name":"pie17",
"type":"PUIPieInterface",
"index":17
}*/
/**
"pie18":{
"title":"饼图18",
"name":"pie18",
"type":"PUIPieInterface",
"index":18
}*/
/**
"pie19":{
"title":"饼图19",
"name":"pie19",
"type":"PUIPieInterface",
"index":19
}*/
/**
"pie20":{
"title":"饼图20",
"name":"pie20",
"type":"PUIPieInterface",
"index":20
}*/
/**
"pie21":{
"title":"饼图21",
"name":"pie21",
"type":"PUIPieInterface",
"index":21
}*/
/**
"pie22":{
"title":"饼图22",
"name":"pie22",
"type":"PUIPieInterface",
"index":22
}*/
/**
"pie23":{
"title":"饼图23",
"name":"pie23",
"type":"PUIPieInterface",
"index":23
}*/
/**
"pie24":{
"title":"饼图24",
"name":"pie24",
"type":"PUIPieInterface",
"index":24
}*/
/**
"pie25":{
"title":"饼图25",
"name":"pie25",
"type":"PUIPieInterface",
"index":25
}*/
/**
"pie26":{
"title":"饼图26",
"name":"pie26",
"type":"PUIPieInterface",
"index":26
}*/
/**
"pie27":{
"title":"饼图27",
"name":"pie27",
"type":"PUIPieInterface",
"index":27
}*/
/**
"pie28":{
"title":"饼图28",
"name":"pie28",
"type":"PUIPieInterface",
"index":28
}*/
/**
"pie29":{
"title":"饼图29",
"name":"pie29",
"type":"PUIPieInterface",
"index":29
}*/
/**
"pie30":{
"title":"饼图30",
"name":"pie30",
"type":"PUIPieInterface",
"index":30
}*/
/**
"pie31":{
"title":"饼图31",
"name":"pie31",
"type":"PUIPieInterface",
"index":31
}*/
/**
"legend":{
"title":"图例",
"name":"legend",
"type":"PUILegendInterface",
"index":0
}*/
/**
"calendar":{
"title":"日历坐标系",
"name":"calendar",
"type":"PUICalendarInterface",
"index":0
}*/
//接口
/**
* 修改饼图数据通过索引
* @param {Number} nIndex 索引
* @param {Array} arrData 饼图数据
*/
SetDataByIndex:function (nIndex,arrData) {
},
/**
* 获取饼图数据通过索引
* @param {Number} nIndex 索引
* @return {Array} 数据值
*/
GetDataByIndex:function (nIndex) {
},
/**
* 获取饼图个数
* @return {Number} 饼图个数
*/
GetPieNumber:function () {
},
/**
* 饼图添加一组数据
* @param {String} strName 数据名称
* @param {Array} arrData 饼图数据
*/
AddOnePieData:function (strName,arrData) {
},
/**
* 饼图删除一组数据
* @param {Number} nIndex 索引
*/
DeleteDataByIndex:function (nIndex) {
},
/**
* 清空饼图数据
*/
DelAllPieData:function () {
},
/**
* 修改日历时间
* @param {String} strStartTime 日历初始时间
* @param {String} strEndTime 日历初始时间
* @property {Collection} TimeRange ["2020-10-01","2020-11-01"]
*/
SetTimeRange:function (strStartTime,strEndTime) {
},
/**
* 修改图例名称通过索引
* @param {Number} nIndex 索引
* @param {String} strName 图例名称
* @property {Collection} LegendNameByIndex [0,"示例一"]
*/
SetLegendNameByIndex:function (nIndex,strName) {
},
/**
* 获取饼图图例名称
* @param {Number} nIndex 索引
* @return {String} 图例名称
*/
GetLegendNameByIndex:function (nIndex) {
},
/**
* 修改图例名称
* @param {Array} arrName 图例名称
* @property {Array} LegendName ["示例一","示例二","示例三"]
*/
SetLegendName:function (arrName) {
},
/**
* 获取饼图全部图例名称
* @return {Array} 图例名称
*/
GetLegendNameAll:function () {
},
/**
* 修改日历星期显示效果
* @param {Array} arrName 星期数据
*/
SetDayLabelName:function (arrName) {
},
/**
* 获取日历星期显示效果
* @return {Array} 星期数据
*/
GetDayLabelName:function () {
},
}