using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart legend navigation. /// [DataContract] public class HighchartLegendNavigation { /// /// Gets or sets the active color. /// [DataMember(Name = "activeColor", EmitDefaultValue = false, IsRequired = false)] public string ActiveColor { get; set; } /// /// Gets or sets a value indicatingg whether to use animation. /// [DataMember(Name = "animation", EmitDefaultValue = false, IsRequired = false)] public bool Animation { get; set; } /// /// Gets or sets the arrow size. /// [DataMember(Name = "arrowSize", EmitDefaultValue = false, IsRequired = false)] public int ArrowSize { get; set; } /// /// Gets or sets the inactive color. /// [DataMember(Name = "inactiveColor", EmitDefaultValue = false, IsRequired = false)] public string InactiveColor { get; set; } /// /// Gets or sets the CSS style. /// [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)] public string Style { get; set; } } }