using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart chart events. /// [DataContract] public class HighchartChartEvents { /// /// Gets or sets the add series function. /// [DataMember(Name = "addSeries", EmitDefaultValue = false, IsRequired = false)] public string AddSeries { get; set; } /// /// Gets or sets the click function. /// [DataMember(Name = "click", EmitDefaultValue = false, IsRequired = false)] public string Click { get; set; } /// /// Gets or sets the drill down function. /// [DataMember(Name = "drilldown", EmitDefaultValue = false, IsRequired = false)] public string DrillDown { get; set; } /// /// Gets or sets the drill up function. /// [DataMember(Name = "drillup", EmitDefaultValue = false, IsRequired = false)] public string DrillUp { get; set; } /// /// Gets or sets the load function. /// [DataMember(Name = "load", EmitDefaultValue = false, IsRequired = false)] public string Load { get; set; } /// /// Gets or sets the redraw function. /// [DataMember(Name = "redraw", EmitDefaultValue = false, IsRequired = false)] public string Redraw { get; set; } /// /// Gets or sets the selection function. /// [DataMember(Name = "selection", EmitDefaultValue = false, IsRequired = false)] public string Selection { get; set; } } }