⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chartelement.cs

📁 FLASH+java动态图表
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using JsonFx.Json;


namespace OpenFlashChart
{
    public  class ChartElement
    {
         private string text;
        private string style;
        [JsonProperty("text")]
        public virtual string Text
        {
            set { this.text = value; }
            get { return this.text; }
        }
        [JsonProperty("style")]
        public string Style
        {
            set { style = value; }
            get
            {
                if (style == null)
                    style = "{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
                return this.style;
            }
            //"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";		

        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -