You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blazor/chart/chart-types/histogram.md
+55-51Lines changed: 55 additions & 51 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,26 @@
1
1
---
2
2
layout: post
3
-
title: Histogram in Blazor Charts Component | Syncfusion
4
-
description: Checkout and learn here all about the Histogram Chart in Syncfusion Blazor Charts component and more.
3
+
title: Histogram Chart in Blazor Charts Component | Syncfusion
4
+
description: Check out and learn how to configure and customize the Histogram Chart in Syncfusion Blazor Charts component.
5
5
platform: Blazor
6
6
control: Chart
7
7
documentation: ug
8
8
---
9
9
10
-
# Histogram in Blazor Charts Component
10
+
# Histogram Chart in Blazor Charts Component
11
11
12
-
## Histogram
12
+
## Histogram Chart
13
13
14
-
[Histogram Chart](https://www.syncfusion.com/blazor-components/blazor-charts/chart-types/histogram-chart)can provide a visual display of large amounts of data that are difficult to understand in a tabular or spreadsheet form and it can be rendered by specifying the series [Type](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_Type) to [Histogram](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeriesType.html#Syncfusion_Blazor_Charts_ChartSeriesType_Histogram).
14
+
The [Histogram Chart](https://www.syncfusion.com/blazor-components/blazor-charts/chart-types/histogram-chart)provides a visual representation of large datasets that may be difficult to interpret in tabular or spreadsheet form. Render a histogram by setting the series [Type](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeries.html#Syncfusion_Blazor_Charts_ChartSeries_Type) to [Histogram](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartSeriesType.html#Syncfusion_Blazor_Charts_ChartSeriesType_Histogram).
The [`OnSeriesRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartEvents.html#Syncfusion_Blazor_Charts_ChartEvents_OnSeriesRender) event allows you to customize series properties, such as [Data](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.SeriesRenderEventArgs.html#Syncfusion_Blazor_Charts_SeriesRenderEventArgs_Data), [Fill](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.SeriesRenderEventArgs.html#Syncfusion_Blazor_Charts_SeriesRenderEventArgs_Fill), and [Series](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.SeriesRenderEventArgs.html#Syncfusion_Blazor_Charts_SeriesRenderEventArgs_Series), before they are rendered on the chart.
77
+
The [`OnSeriesRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartEvents.html#Syncfusion_Blazor_Charts_ChartEvents_OnSeriesRender) event enables customization of series properties, such as [Data](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.SeriesRenderEventArgs.html#Syncfusion_Blazor_Charts_SeriesRenderEventArgs_Data), [Fill](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.SeriesRenderEventArgs.html#Syncfusion_Blazor_Charts_SeriesRenderEventArgs_Fill), and [Series](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.SeriesRenderEventArgs.html#Syncfusion_Blazor_Charts_SeriesRenderEventArgs_Series), before rendering.
@@ -106,7 +109,6 @@ The [`OnSeriesRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.C
106
109
</SfChart>
107
110
108
111
@code {
109
-
110
112
public class Data
111
113
{
112
114
public double Y { get; set; }
@@ -119,17 +121,17 @@ The [`OnSeriesRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.C
119
121
120
122
public List<Data> ExamScores = new List<Data>
121
123
{
122
-
new Data { Y=5.250},
123
-
new Data { Y=7.750},
124
-
new Data { Y=8.275},
125
-
new Data { Y=9.750},
126
-
new Data { Y=36.250},
127
-
new Data { Y=46.250},
128
-
new Data { Y=56.250},
129
-
new Data { Y=66.500},
130
-
new Data { Y=76.625},
131
-
new Data { Y=80.000},
132
-
new Data { Y=97.750}
124
+
new Data { Y = 5.250},
125
+
new Data { Y = 7.750},
126
+
new Data { Y = 8.275},
127
+
new Data { Y = 9.750},
128
+
new Data { Y = 36.250},
129
+
new Data { Y = 46.250},
130
+
new Data { Y = 56.250},
131
+
new Data { Y = 66.500},
132
+
new Data { Y = 76.625},
133
+
new Data { Y = 80.000},
134
+
new Data { Y = 97.750}
133
135
};
134
136
}
135
137
@@ -138,16 +140,18 @@ The [`OnSeriesRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.C
138
140
139
141
### Point render
140
142
141
-
The [`OnPointRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartEvents.html#Syncfusion_Blazor_Charts_ChartEvents_OnPointRender) event allows you to customize each data point before it is rendered on the chart.
143
+
The [`OnPointRender`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartEvents.html#Syncfusion_Blazor_Charts_ChartEvents_OnPointRender) event allows customization of each data point before rendering.
0 commit comments