using System.Collections.Generic; using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart Drilldown. /// [DataContract] public class HighchartDrilldown { /// /// Gets or sets the active axis label style. /// [DataMember(Name = "activeAxisLabelStyle", EmitDefaultValue = false, IsRequired = false)] public string ActiveAxisLabelStyle { get; set; } /// /// Gets or sets the active data label style. /// [DataMember(Name = "activeDataLabelStye", EmitDefaultValue = false, IsRequired = false)] public string ActiveDataLabelStyle { get; set; } /// /// Gets or sets a value indicating whether to use an animation. /// [DataMember(Name = "animation", EmitDefaultValue = false, IsRequired = false)] public bool Animation { get; set; } /// /// Gets or sets the drill up button. /// [DataMember(Name = "drillUpButton", EmitDefaultValue = false, IsRequired = false)] public HighchartButton DrillUpButton { get; set; } /// /// Gets or sets the series. /// [DataMember(Name = "series", EmitDefaultValue = false, IsRequired = false)] public IEnumerable Series { get; set; } } }