using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart state. /// [DataContract] public class HighchartState { /// /// Gets or sets a value indicating whether the state is enabled. /// [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)] public bool Enabled { get; set; } /// /// Gets or sets the fill color. /// [DataMember(Name = "fillColor", EmitDefaultValue = false, IsRequired = false)] public string FillColor { get; set; } /// /// Gets or sets the line color. /// [DataMember(Name = "lineColor", EmitDefaultValue = false, IsRequired = false)] public string LineColor { get; set; } /// /// Gets or sets the line width. /// [DataMember(Name = "lineWidth", EmitDefaultValue = false, IsRequired = false)] public int LineWidth { get; set; } /// /// Gets or sets the radius. /// [DataMember(Name = "radius", EmitDefaultValue = false, IsRequired = false)] public int Radius { get; set; } } }