using System.Collections.Generic; using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart exporting context button. /// [DataContract] public class HighchartExportingContextButton : HighchartButtonOptions { /// /// Gets or sets the menu items. /// [DataMember(Name = "menuItems", EmitDefaultValue = false, IsRequired = false)] public IEnumerable MenuItems { get; set; } /// /// Gets or sets the OnClick function. /// [DataMember(Name = "onclick", EmitDefaultValue = false, IsRequired = false)] public string OnClick { get; set; } /// /// Gets or sets the symbol size. /// [DataMember(Name = "symbolSize", EmitDefaultValue = false, IsRequired = false)] public int SymbolSize { get; set; } } }