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: ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.MVC/funnel.md
+68-6Lines changed: 68 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: post
3
-
title: Funnel in ##Platform_Name## Accumulation Chart Component
3
+
title: Funnel in ##Platform_Name## Accumulation Chart Component | Syncfusion
4
4
description: Learn here all about Funnel in Syncfusion ##Platform_Name## Accumulation Chart component of Syncfusion Essential JS 2 and more.
5
5
platform: ej2-asp-core-mvc
6
6
control: Funnel
@@ -9,7 +9,7 @@ documentation: ug
9
9
---
10
10
11
11
12
-
# Funnel Chart
12
+
# Funnel chart in ##Platform_Name## Accumulation Chart Component
13
13
14
14
To render a funnel series, use the series [`Type`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationSeries.html#Syncfusion_EJ2_Charts_AccumulationSeries_Type) as `Funnel`.
15
15
@@ -67,7 +67,7 @@ The size of the funnel chart can be customized by using the `Width` and `Height
67
67
68
68
69
69
70
-
## Neck Size
70
+
## Neck size
71
71
72
72
The funnel's neck size can be customized by using the `NeckWidth` and `NeckHeight` properties.
73
73
@@ -96,7 +96,7 @@ The funnel's neck size can be customized by using the `NeckWidth` and `NeckHeigh
96
96
97
97
98
98
99
-
## Gap Between the Segments
99
+
## Gap between the segments
100
100
101
101
Funnel chart provides options to customize the space between the segments by using the `GapRatio` property of the series. It ranges from 0 to 1.
102
102
@@ -154,7 +154,7 @@ Points can be exploded on mouse click by setting the `Explode` property to true.
154
154
155
155
156
156
157
-
## Smart Data Label
157
+
## Smart data label
158
158
159
159
It provides the data label smart arrangement of the funnel and pyramid series. The overlap data label will be placed on left side of the funnel/pyramid series.
160
160
@@ -212,7 +212,69 @@ Individual points can be customized using the `PointRender` event.
212
212
213
213
214
214
215
-
## See Also
215
+
## Mode
216
+
217
+
The Funnel chart supports both Standard and Trapezoidal modes of rendering. The default value of the [`FunnelMode`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationSeries.html#Syncfusion_EJ2_Charts_AccumulationSeries_FunnelMode) is `Standard`.
218
+
219
+
### Standard
220
+
221
+
The `Standard` funnel mode follows the traditional funnel shape, with the width continuously narrowing down to a point at the bottom.
222
+
223
+
{% if page.publishingplatform == "aspnet-core" %}
224
+
225
+
{% tabs %}
226
+
{% highlight cshtml tabtitle="CSHTML" %}
227
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/tagHelper %}
228
+
{% endhighlight %}
229
+
{% highlight c# tabtitle="Mode-standard.cs" %}
230
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/mode-standard.cs %}
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/razor %}
239
+
{% endhighlight %}
240
+
{% highlight c# tabtitle="Mode-standard.cs" %}
241
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/mode-standard.cs %}
242
+
{% endhighlight %}
243
+
{% endtabs %}
244
+
{% endif %}
245
+
246
+
247
+
248
+
### Trapezoidal
249
+
250
+
The `Trapezoidal` mode is a modified funnel shape where the width narrows, but features a flattened or parallel section near the top, creating a trapezoidal appearance. This mode helps compare different data points more clearly while maintaining a funnel-like structure.
251
+
252
+
{% if page.publishingplatform == "aspnet-core" %}
253
+
254
+
{% tabs %}
255
+
{% highlight cshtml tabtitle="CSHTML" %}
256
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-trapezoidal/tagHelper %}
257
+
{% endhighlight %}
258
+
{% highlight c# tabtitle="Mode-trapezoidal.cs" %}
259
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-trapezoidal/mode-trapezoidal.cs %}
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.MVC/title-and-sub-title.md
+74-16Lines changed: 74 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: post
3
-
title: Title And Sub Title in ##Platform_Name## Accumulation Chart Component
3
+
title: Title And Sub Title in ##Platform_Name## Accumulation Chart Component | Syncfusion
4
4
description: Learn here all about Title And Sub Title in Syncfusion ##Platform_Name## Accumulation Chart component of Syncfusion Essential JS 2 and more.
5
5
platform: ej2-asp-core-mvc
6
6
control: Title And Sub Title
@@ -10,7 +10,7 @@ documentation: ug
10
10
11
11
<!-- markdownlint-disable MD036 -->
12
12
13
-
# Title
13
+
# Title in ##Platform_Name## Accumulation Chart Component
14
14
15
15
Accumulation Chart can be given a title using [`Title`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChart.html#Syncfusion_EJ2_Charts_AccumulationChart_Title) property, to show the information about the data plotted.
16
16
@@ -39,7 +39,7 @@ Accumulation Chart can be given a title using [`Title`](https://help.syncfusion.
39
39
40
40
41
41
42
-
## Title Customization
42
+
## Title customization
43
43
44
44
Accumulation Chart can be customized a title using [`TitleStyle`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChart.html#Syncfusion_EJ2_Charts_AccumulationChart_TitleStyle) property.
45
45
@@ -49,8 +49,8 @@ Accumulation Chart can be customized a title using [`TitleStyle`](https://help.s
49
49
{% highlight cshtml tabtitle="CSHTML" %}
50
50
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/tagHelper %}
51
51
{% endhighlight %}
52
-
{% highlight c# tabtitle="Title.cs" %}
53
-
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/title.cs %}
52
+
{% highlight c# tabtitle="Title-cus.cs" %}
53
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/title-cus.cs %}
54
54
{% endhighlight %}
55
55
{% endtabs %}
56
56
@@ -60,8 +60,37 @@ Accumulation Chart can be customized a title using [`TitleStyle`](https://help.s
60
60
{% highlight razor tabtitle="CSHTML" %}
61
61
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/razor %}
62
62
{% endhighlight %}
63
-
{% highlight c# tabtitle="Title.cs" %}
64
-
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/title.cs %}
63
+
{% highlight c# tabtitle="Title-cus.cs" %}
64
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-cus/title-cus.cs %}
65
+
{% endhighlight %}
66
+
{% endtabs %}
67
+
{% endif %}
68
+
69
+
70
+
71
+
### Position
72
+
73
+
The [`Position`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart title. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The Custom option allows you to position the title anywhere on the chart using x and y coordinates, providing flexible title alignment based on layout requirements.
74
+
75
+
{% if page.publishingplatform == "aspnet-core" %}
76
+
77
+
{% tabs %}
78
+
{% highlight cshtml tabtitle="CSHTML" %}
79
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-position/tagHelper %}
80
+
{% endhighlight %}
81
+
{% highlight c# tabtitle="Title-position.cs" %}
82
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-position/title-position.cs %}
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-position/razor %}
91
+
{% endhighlight %}
92
+
{% highlight c# tabtitle="Title-position.cs" %}
93
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-position/title-position.cs %}
65
94
{% endhighlight %}
66
95
{% endtabs %}
67
96
{% endif %}
@@ -78,8 +107,8 @@ Accumulation Chart can be given a subtitle using [`SubTitle`](https://help.syncf
78
107
{% highlight cshtml tabtitle="CSHTML" %}
79
108
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/tagHelper %}
80
109
{% endhighlight %}
81
-
{% highlight c# tabtitle="Title.cs" %}
82
-
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/title.cs %}
110
+
{% highlight c# tabtitle="Sub-title.cs" %}
111
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/sub-title.cs %}
83
112
{% endhighlight %}
84
113
{% endtabs %}
85
114
@@ -89,15 +118,15 @@ Accumulation Chart can be given a subtitle using [`SubTitle`](https://help.syncf
89
118
{% highlight razor tabtitle="CSHTML" %}
90
119
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/razor %}
91
120
{% endhighlight %}
92
-
{% highlight c# tabtitle="Title.cs" %}
93
-
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/title.cs %}
121
+
{% highlight c# tabtitle="Sub-title.cs" %}
122
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title/sub-title.cs %}
94
123
{% endhighlight %}
95
124
{% endtabs %}
96
125
{% endif %}
97
126
98
127
99
128
100
-
## SubTitle Customization
129
+
## SubTitle customization
101
130
102
131
Accumulation Chart can be customized a subtitle using [`SubTitleStyle`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationChart.html#Syncfusion_EJ2_Charts_AccumulationChart_SubTitleStyle) property.
103
132
@@ -107,8 +136,8 @@ Accumulation Chart can be customized a subtitle using [`SubTitleStyle`](https://
107
136
{% highlight cshtml tabtitle="CSHTML" %}
108
137
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/tagHelper %}
109
138
{% endhighlight %}
110
-
{% highlight c# tabtitle="Title.cs" %}
111
-
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/title.cs %}
139
+
{% highlight c# tabtitle="Sub-title-cus.cs" %}
140
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/sub-title-cus.cs %}
112
141
{% endhighlight %}
113
142
{% endtabs %}
114
143
@@ -118,8 +147,37 @@ Accumulation Chart can be customized a subtitle using [`SubTitleStyle`](https://
118
147
{% highlight razor tabtitle="CSHTML" %}
119
148
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/razor %}
120
149
{% endhighlight %}
121
-
{% highlight c# tabtitle="Title.cs" %}
122
-
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/title.cs %}
150
+
{% highlight c# tabtitle="Sub-title-cus.cs" %}
151
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/sub-title-cus/sub-title-cus.cs %}
152
+
{% endhighlight %}
153
+
{% endtabs %}
154
+
{% endif %}
155
+
156
+
157
+
158
+
### Position
159
+
160
+
The [`Position`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Charts.AccumulationChartTitleStyleSettings.html#Syncfusion_EJ2_Charts_AccumulationChartTitleStyleSettings_Position) property customizes the placement of the accumulation chart subtitle. It supports the following options: `Right`, `Left`, `Bottom`, `Top`, and `Custom`. The Custom option allows you to position the subtitle anywhere on the chart using x and y coordinates, providing flexible subtitle alignment based on layout requirements.
161
+
162
+
{% if page.publishingplatform == "aspnet-core" %}
163
+
164
+
{% tabs %}
165
+
{% highlight cshtml tabtitle="CSHTML" %}
166
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-position/tagHelper %}
167
+
{% endhighlight %}
168
+
{% highlight c# tabtitle="Title-position.cs" %}
169
+
{% include code-snippet/chart/accumulation-charts/pie-doughnut/title-position/title-position.cs %}
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.NETCORE/funnel.md
+67-5Lines changed: 67 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ documentation: ug
9
9
---
10
10
11
11
12
-
# Funnel Chart in ##Platform_Name## Accumulation Chart Component
12
+
# Funnel chart in ##Platform_Name## Accumulation Chart Component
13
13
14
14
To render a funnel series, use the series [`type`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationSeries.html#Syncfusion_EJ2_Charts_AccumulationSeries_Type) as `Funnel`.
15
15
@@ -77,7 +77,7 @@ public class FunnelChartData
77
77
78
78
79
79
80
-
## Neck Size
80
+
## Neck size
81
81
82
82
The funnel's neck size can be customized by using the `neckWidth` and `neckHeight` properties.
83
83
@@ -111,7 +111,7 @@ public class FunnelChartData
111
111
112
112
113
113
114
-
## Gap Between the Segments
114
+
## Gap between the segments
115
115
116
116
Funnel chart provides options to customize the space between the segments by using the `gapRatio` property of the series. It ranges from 0 to 1.
117
117
@@ -179,7 +179,7 @@ public class FunnelChartData
179
179
180
180
181
181
182
-
## Smart Data Label
182
+
## Smart data label
183
183
184
184
It provides the data label smart arrangement of the funnel and pyramid series. The overlap data label will be placed on left side of the funnel or pyramid series.
185
185
@@ -248,7 +248,69 @@ public class FunnelChartData
248
248
249
249
250
250
251
-
## See Also
251
+
## Mode
252
+
253
+
The Funnel chart supports both Standard and Trapezoidal modes of rendering. The default value of the [`FunnelMode`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Charts.AccumulationSeries.html#Syncfusion_EJ2_Charts_AccumulationSeries_FunnelMode) is `Standard`.
254
+
255
+
### Standard
256
+
257
+
The `Standard` funnel mode follows the traditional funnel shape, with the width continuously narrowing down to a point at the bottom.
258
+
259
+
{% if page.publishingplatform == "aspnet-core" %}
260
+
261
+
{% tabs %}
262
+
{% highlight cshtml tabtitle="CSHTML" %}
263
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/tagHelper %}
264
+
{% endhighlight %}
265
+
{% highlight c# tabtitle="Mode-standard.cs" %}
266
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/mode-standard.cs %}
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/razor %}
275
+
{% endhighlight %}
276
+
{% highlight c# tabtitle="Mode-standard.cs" %}
277
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-standard/mode-standard.cs %}
278
+
{% endhighlight %}
279
+
{% endtabs %}
280
+
{% endif %}
281
+
282
+
283
+
284
+
### Trapezoidal
285
+
286
+
The `Trapezoidal` mode is a modified funnel shape where the width narrows, but features a flattened or parallel section near the top, creating a trapezoidal appearance. This mode helps compare different data points more clearly while maintaining a funnel-like structure.
287
+
288
+
{% if page.publishingplatform == "aspnet-core" %}
289
+
290
+
{% tabs %}
291
+
{% highlight cshtml tabtitle="CSHTML" %}
292
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-trapezoidal/tagHelper %}
293
+
{% endhighlight %}
294
+
{% highlight c# tabtitle="Mode-trapezoidal.cs" %}
295
+
{% include code-snippet/chart/accumulation-charts/funnel/mode-trapezoidal/mode-trapezoidal.cs %}
0 commit comments