Highcharts wrapper to assist in creating the proper JSON server-side.

HighchartExportingButtons.cs 481B

    using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// <summary> /// Highchart exporting buttons. /// </summary> [DataContract] public class HighchartExportingButtons { /// <summary> /// Gets or sets the context button. /// </summary> [DataMember(Name = "contextButton", EmitDefaultValue = false, IsRequired = false)] public HighchartExportingContextButton ContextButton { get; set; } } }