##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.
<body>
<div id="container" style="width:820px;height:500px;"></div>
@(Html.EJ().Sparkline("container"))
</body>
Set size in pixels
You can also set the Height
and Width
for Sparkline by using the Size
property of the Sparkline.
@(Html.EJ().Sparkline("container")
.Size(size=>size.Height("40").Width("60"))
)
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.
@(Html.EJ().Sparkline("container")
.IsResponsive(true)
)