Overview
Blazor Stacked column chart is a chart with X values stacked over one another in the series order. Shows the relation between individual values to the total sum of the points.
Multi series
Allows you to plot multiple series in a single chart to compare different data sets. Enabling legend and tooltip gives more information about the individual series.
Marker
Marks data points with built-in shapes such as circles, rectangles, ellipses, vertical lines, horizontal lines, diamonds, triangles, pluses, crosses, and pentagons. In addition to these shapes, use images to make the point more attractive.
Data label
Data labels display information about data points. Add a template to display data labels with HTML elements such as images, DIV, and spans for more informative data labels. You can rotate a data label by its given angle.
Multiple axes
Use multiple axes to plot different data sets that widely vary from one other.
Stacking group
Allows grouping a series with another series separately using a different group name.
Spacing and width
The Blazor Stacked Column Chart provides an option to customize spacing between two columns and the width of the column.
Rounded corners
Modernize the UI by applying rounded corners to the stacked column
Customization
Customize the look and feel of the Blazor Stacked Column Chart using built-in APIs.
Blazor Stacked Column Chart Code Example
Easily get started with Blazor Stacked Column Chart using a few simple lines of C# code, as demonstrated below. Also explore our Blazor Stacked Column Chart Example that shows you how to render and configure the chart.
@using Syncfusion.Blazor.Charts
<SfChart>
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category"/>
<ChartSeriesCollection>
<ChartSeries DataSource="@MedalDetails" XName="X" YName="YValue" Type="ChartSeriesType.StackingColumn"/>
<ChartSeries DataSource="@MedalDetails" XName="X" YName="YValue1" Type="ChartSeriesType.StackingColumn"/>
</ChartSeriesCollection>
</SfChart>
@code
{
public class ChartData
{
public string X { get; set; }
public double YValue { get; set; }
public double YValue1 { get; set; }
}
public List<ChartData> MedalDetails = new List<ChartData>
{
new ChartData { X= "USA", YValue= 46, YValue1=56 },
new ChartData { X= "GBR", YValue= 27, YValue1=17 },
new ChartData { X= "CHN", YValue= 26, YValue1=36 },
new ChartData { X= "UK", YValue= 56, YValue1=16 },
new ChartData { X= "AUS", YValue= 12, YValue1=46 },
new ChartData { X= "IND", YValue= 26, YValue1=16 },
new ChartData { X= "DEN", YValue= 26, YValue1=12 },
new ChartData { X= "MEX", YValue= 34, YValue1=32},
};
}