Sparkline Dimensions

You can set the size directly on the Sparkline or to the container of the sparkline. When you do not specify the size, it takes 30px as the height and 50px as its width, by default.

Set size for the container

You can customize the Sparkline dimension by setting the width and height for the container element.

  • HTML
  • <body>
    
     <div id="container" style="width:820px;height:500px;"></div>
    <ej-spark-line id="container">
    </ej-spark-line>
    
    </body>

    Set size in pixels

    You can also set the Sparkline dimension by using the e-size property of the Sparkline.

  • CSHTML
  • <ej-spark-line id="container">
    <e-size height="40" width="60"></e-size>
    </ej-spark-line>

    Responsive Sparkline

    To resize the Sparkline when the browser or the sparkline container is resized, set the is-responsive property to true, where the sparkline adapts to the changes in size of the container.

  • CSHTML
  • <ej-spark-line id="container" is-responsive="true">
    </ej-spark-line>