using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart plot line. /// [DataContract] public class HighchartPlotLine { /// /// Gets or sets the color. /// [DataMember(Name = "color", EmitDefaultValue = false, IsRequired = false)] public string Color { get; set; } /// /// Gets or sets the dash style. /// [DataMember(Name = "dashStyle", EmitDefaultValue = false, IsRequired = false)] public string DashStyle { get; set; } /// /// Gets or sets the events. /// [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)] public string Events { get; set; } /// /// Gets or sets the identifier. /// [DataMember(Name = "id", EmitDefaultValue = false, IsRequired = false)] public string Id { get; set; } /// /// Gets or sets the label. /// [DataMember(Name = "label", EmitDefaultValue = false, IsRequired = false)] public HighchartLabel Label { get; set; } /// /// Gets or sets the value. /// [DataMember(Name = "value", EmitDefaultValue = false, IsRequired = false)] public int Value { get; set; } /// /// Gets or sets the width. /// [DataMember(Name = "width", EmitDefaultValue = false, IsRequired = false)] public int Width { get; set; } /// /// Gets or sets the z-index. /// [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)] public int ZIndex { get; set; } } }