menu

ASP.NET Web Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class OverviewProperties

    Show / Hide Table of Contents

    Class OverviewProperties

    Inheritance
    System.Object
    EJTagHelper
    OverviewProperties
    Inherited Members
    EJTagHelper.GetControlDetails(String)
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.JavaScript.DataVisualization.Models
    Assembly: Syncfusion.EJ.dll
    Syntax
    public class OverviewProperties : EJTagHelper

    Constructors

    OverviewProperties()

    Initializes a new instance of the OverviewProperties class.

    Declaration
    public OverviewProperties()

    Properties

    Height

    Gets or sets the height of the overview control

    Declaration
    [JsonProperty("height")]
    public string Height { get; set; }
    Property Value
    Type Description
    System.String

    null

    Examples
               OverviewProperties Overview = new OverviewProperties();
               Overview.Height = "300px";         

    SourceID

    Gets or sets SourceID property of overview should be set with the corresponding Diagram ID

    Declaration
    [JsonProperty("sourceID")]
    public string SourceID { get; set; }
    Property Value
    Type Description
    System.String

    String.Empty

    Examples
             OverviewProperties Overview = new OverviewProperties();
             Overview.SourceID = "overview";             

    Width

    Gets or sets the width of the overview control

    Declaration
    [JsonProperty("width")]
    public string Width { get; set; }
    Property Value
    Type Description
    System.String

    null

    Examples
               OverviewProperties Overview = new OverviewProperties();
               Overview.Width = "300px";         

    Methods

    GetControlDetails()

    Declaration
    protected override object GetControlDetails()
    Returns
    Type Description
    System.Object
    Overrides
    EJTagHelper.GetControlDetails()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved