- Set size for the container
- Set size in pixels
- Responsive Sparkline
Contact Support
Sparkline Dimensions in ASP.NET WebForms Sparkline
18 Apr 20231 minute to read
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.
<body>
<div id="container" style="width:820px;height:500px;">
<ej:Sparkline ClientIDMode="Static" ID="Sparkline1" runat="server">
</ej:Sparkline>
</div>
</body>
Set size in pixels
You can also set the Height
and Width
for Sparkline by using the Size
property of the Sparkline.
<ej:Sparkline ClientIDMode="Static" ID="Sparkline1" runat="server">
<Size Height="40" Width="60"></Size>
</ej:Sparkline>
Responsive Sparkline
To resize the Sparkline when the browser or the sparkline container is resized, set the IsResponsive
property to true, where the sparkline adapts to the changes in size of the container.
<ej:Sparkline ClientIDMode="Static" ID="Sparkline1" IsResponsive="true" runat="server">
</ej:Sparkline>