/**
* @constructor
*/
function XUIRadar() {
}

XUIRadar.prototype = {

    //组件
    /**
    "radar":{
        "title":"雷达图",
        "name":"radar",
        "type":"PUIRadarInterface",
        "index":0
    }*/

    /**
    "pie1":{
        "title":"饼图1",
        "name":"pie1",
        "type":"PUIPieInterface",
        "index":1
    }*/

    /**
    "pie2":{
        "title":"饼图2",
        "name":"pie2",
        "type":"PUIPieInterface",
        "index":2
    }*/


    //接口
    /**
     * 设置Data
     * @param {Array} ArrayData [80, 90, 30, 50, 80, 70, 60]
     */
    SetData:function (ArrayData) {
    },

    /**
     * 删除所有数据
     * @param {string} strName 删除的数据名
     */
    ClearData:function (strName) {
    },

    /**
     * 删除一个Data
     * @param {string} strName 删除的数据名
     */
    DelData:function (strName) {
    },

    /**
     * 设置TipText
     * @param {Array} ArrayData
     */
    SetTipText:function (ArrayData) {
    },

    /**
     * 标记文本颜色
     * @param {String} strColor "0xff8394c1"
     * @property {Color} TipColor "0xff8394c1"
     */
    SetTipColor:function (strColor) {
    },

    /**
     * 获取标记文本颜色
     * @return {String} 
     */
    GetTipTextColor:function () {
    },

    /**
     * 标记文本选中颜色
     * @param {String} strColor "0xffff0000"
     * @property {Color} TipCheckedColor "0xffff0000"
     */
    SetTipCheckedColor:function (strColor) {
    },

    /**
     * 标记文本大小
     * @param {Number} nSize 22
     * @property {Number} TipSize 22
     */
    SetTipFontSize:function (nSize) {
    },

    /**
     * 获取标记文本大小
     * @return {Number}
     */
    GetTipFontSize:function () {
    },

    /**
     * 最大值
     * @param {Number} nValue 100
     * @property {Number} MaxValue 100
     */
    SetMaxValue:function (nValue) {
    },

    /**
     * 获取radarMax
     */
    GetRadarMax:function () {
    },

    /**
     * 线的颜色
     * @param {String} strColor "0xff4569FF"
     * @property {Color} LineColor "0xff4569FF"
     */
    SetLineColor:function (strColor) {
    },

    /**
     * 获取RadarLineColor
     * @return {String}
     */
    GetRadarLineColor:function () {
    },

    /**
     * 背景颜色
     * @param {String} strColor "0xff4569FF"
     * @property {Color} BgColor "0xff4569FF"
     */
    SetBgColor:function (strColor) {
    },

    /**
     * 获取背景颜色
     * @return {String}
     */
    GetBgColor:function () {
    },

    /**
     * 中间圆颜色
     * @param {String} strColor "0xff060a22"
     * @property {Color} MiddleColor "0xff060a22"
     */
    SetMiddleColor:function (strColor) {
    },

    /**
     * 中间圆大小
     * 
     * @param {String} nRadius 
     * @property {String} MiddleRadius "40%"
     */
    SetMiddleRadius:function (nRadius) {
    },

    /**
     * 获取中间圆颜色
     * @return {String}
     */
    GetMiddleColor:function () {
    },

    /**
     * 当前百分比颜色
     * @param {String} strColor 16进制颜色值
     * @property {String} CurrentValueColor "0xff4569FF"
     */
    SetCurrentValueColor:function (strColor) {
    },

    /**
     * 当前百分比字体大小
     * @param {Number} nSize 
     * @property {Number} CurrentValueTextSize 15
     */
    SetCurrentValueTextSize:function (nSize) {
    },

    /**
     * 描述文本
     * @param {String} strText 
     * @property {String} DescriptionText "示例描述文本"
     */
    SetDescriptionText:function (strText) {
    },

    /**
     * 描述文本颜色
     * @param {String} strColor 
     * @property {String} DescriptionTextColor "0xffffffff"
     */
    SetDescriptionTextColor:function (strColor) {
    },

    /**
     * 描述文本颜色大小
     * @param {Number} nSize 
     * @property {Number} DescriptionTextSize 15
     */
    SetDescriptionTextSize:function (nSize) {
    },

    /**
     * 外部雷达圆的颜色
     * @param {String} strOutColor 外部颜色
     * @param {String} strOutLineColor 外部线的颜色
     * @property {Collection} OutSideColor ["0xff4569FF", "0xff4569FF"]
     */
    SetOutSideColor:function (strOutColor,strOutLineColor) {
    },

    /**
     * 获取外部雷达圆颜色
     * @return {String}
     */
    GetOutSideRadarColor:function () {
    },

    /**
     * 设置normal图片
     * @param {String} strPath
     * @property {String} NormalPic "common_2dChart/XUIRadar/images/leida_dian2.png"
     */
    SetNormalPic:function (strPath) {
    },

    /**
     * 设置Check图片
     * @param {String} strPath
     * @property {String} CheckPic "common_2dChart/XUIRadar/images/leida_dian.png"
     */
    SetCheckPic:function (strPath) {
    },

}