${REST_ThemeGraphText_Title}

${REST_ThemeGraphText_Description}

예제 #1
0
        internal static ThemeGraphText FromJson(JsonObject json)
        {
            if (json == null) return null;

            ThemeGraphText graphText = new ThemeGraphText();
            graphText.GraphTextDisplayed = json["graphTextDisplayed"].GetBooleanEx();
            if (json["graphTextFormat"] != null)
            {
                graphText.GraphTextFormat = (ThemeGraphTextFormat)Enum.Parse(typeof(ThemeGraphTextFormat), json["graphTextFormat"].GetStringEx(), true);
            }
            else
            {
                //不处理null的情况
            }
            graphText.GraphTextStyle = ServerTextStyle.FromJson(json["graphTextStyle"].GetObjectEx());
            return graphText;
        }
예제 #2
0
        internal static string ToJson(ThemeGraphText graphText)
        {
            string json = "";
            List<string> list = new List<string>();

            list.Add(string.Format("\"graphTextDisplayed\":{0}", graphText.GraphTextDisplayed.ToString().ToLower()));

            list.Add(string.Format("\"graphTextFormat\":\"{0}\"", graphText.GraphTextFormat));

            if (graphText.GraphTextStyle != null)
            {
                list.Add(string.Format("\"graphTextStyle\":{0}", ServerTextStyle.ToJson(graphText.GraphTextStyle)));
            }
            else
            {
                list.Add(string.Format("\"graphTextStyle\":{0}", ServerTextStyle.ToJson(new ServerTextStyle())));
            }
            json = string.Join(",", list.ToArray());
            return json;
        }