Skip to content

Commit 78df527

Browse files
Merge pull request #3151 from Syncfusion-Content/hotfix/hotfix-v26.1.35
DOCINFRA-2341_merged_using_automation
2 parents 40cfbfc + 73b3fb0 commit 78df527

File tree

217 files changed

+3457
-1520
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+3457
-1520
lines changed

ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.NETCORE/annotation.md

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Annotation in ##Platform_Name## Accumulation Chart Component
3+
title: Annotation in ##Platform_Name## Accumulation Chart Component | Syncfusion
44
description: Learn here all about Annotation in Syncfusion ##Platform_Name## Accumulation Chart component of Syncfusion Essential JS 2 and more.
55
platform: ej2-asp-core-mvc
66
control: Annotation
@@ -9,7 +9,7 @@ documentation: ug
99
---
1010

1111

12-
# Annotation
12+
# Annotation in ##Platform_Name## Accumulation Chart Component
1313

1414
The annotations are used to mark the specific area of interest in the chart area with texts, shapes or images.
1515

@@ -23,8 +23,13 @@ By using the <code>content</code> option of annotation property, you can specify
2323
{% highlight cshtml tabtitle="CSHTML" %}
2424
{% include code-snippet/chart/accumulation-charts/annotation/annotation/tagHelper %}
2525
{% endhighlight %}
26-
{% highlight c# tabtitle="Annotation.cs" %}
27-
{% include code-snippet/chart/accumulation-charts/annotation/annotation/annotation.cs %}
26+
{% highlight c# tabtitle="CSHTML.cs" %}
27+
...
28+
public class PieChartData
29+
{
30+
public string xValue;
31+
public double yValue;
32+
}
2833
{% endhighlight %}
2934
{% endtabs %}
3035

@@ -52,8 +57,13 @@ The annotation can be placed with respect to either `Series` or `Chart`.
5257
{% highlight cshtml tabtitle="CSHTML" %}
5358
{% include code-snippet/chart/accumulation-charts/annotation/region/tagHelper %}
5459
{% endhighlight %}
55-
{% highlight c# tabtitle="Region.cs" %}
56-
{% include code-snippet/chart/accumulation-charts/annotation/region/region.cs %}
60+
{% highlight c# tabtitle="CSHTML.cs" %}
61+
...
62+
public class PieChartData
63+
{
64+
public string x;
65+
public double y;
66+
}
5767
{% endhighlight %}
5868
{% endtabs %}
5969

@@ -81,8 +91,13 @@ Specifies the coordinate units of an annotation either in `Pixel` or `Point`.
8191
{% highlight cshtml tabtitle="CSHTML" %}
8292
{% include code-snippet/chart/accumulation-charts/annotation/co-ordinate/tagHelper %}
8393
{% endhighlight %}
84-
{% highlight c# tabtitle="Co-ordinate.cs" %}
85-
{% include code-snippet/chart/accumulation-charts/annotation/co-ordinate/co-ordinate.cs %}
94+
{% highlight c# tabtitle="CSHTML.cs" %}
95+
...
96+
public class PieChartData
97+
{
98+
public string x;
99+
public double y;
100+
}
86101
{% endhighlight %}
87102
{% endtabs %}
88103

@@ -110,8 +125,13 @@ The annotations can be moved vertically and horizontally from its default positi
110125
{% highlight cshtml tabtitle="CSHTML" %}
111126
{% include code-snippet/chart/accumulation-charts/annotation/alignment/tagHelper %}
112127
{% endhighlight %}
113-
{% highlight c# tabtitle="Alignment.cs" %}
114-
{% include code-snippet/chart/accumulation-charts/annotation/alignment/alignment.cs %}
128+
{% highlight c# tabtitle="CSHTML.cs" %}
129+
...
130+
public class PieChartData
131+
{
132+
public string x;
133+
public double y;
134+
}
115135
{% endhighlight %}
116136
{% endtabs %}
117137

ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.NETCORE/center-label.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ Using [`centerLabel`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.E
1919
{% include code-snippet/chart/accumulation-charts/chart-print/centerlabel/tagHelper %}
2020
{% endhighlight %}
2121
{% highlight c# tabtitle="Centerlabel.cs" %}
22-
{% include code-snippet/chart/accumulation-charts/chart-print/centerlabel/centerlabel.cs %}
22+
...
23+
public class PieChartData
24+
{
25+
public string x;
26+
public double y;
27+
public string text;
28+
}
2329
{% endhighlight %}
2430
{% endtabs %}
2531

@@ -31,8 +37,14 @@ The default text in the center label can be changed when the mouse pointer hover
3137
{% highlight cshtml tabtitle="CSHTML" %}
3238
{% include code-snippet/chart/accumulation-charts/chart-print/hovertext/tagHelper %}
3339
{% endhighlight %}
34-
{% highlight c# tabtitle="Hovertext.cs" %}
35-
{% include code-snippet/chart/accumulation-charts/chart-print/hovertext/hovertext.cs %}
40+
{% highlight c# tabtitle="CSHTML.cs" %}
41+
...
42+
public class PieChartData
43+
{
44+
public string x;
45+
public double y;
46+
public string text;
47+
}
3648
{% endhighlight %}
3749
{% endtabs %}
3850

@@ -44,8 +56,14 @@ Customize the center label text using the [`textStyle`](https://help.syncfusion.
4456
{% highlight cshtml tabtitle="CSHTML" %}
4557
{% include code-snippet/chart/accumulation-charts/chart-print/customization/tagHelper %}
4658
{% endhighlight %}
47-
{% highlight c# tabtitle="Customization.cs" %}
48-
{% include code-snippet/chart/accumulation-charts/chart-print/customization/customization.cs %}
59+
{% highlight c# tabtitle="CSHTML.cs" %}
60+
...
61+
public class PieChartData
62+
{
63+
public string x;
64+
public double y;
65+
public string text;
66+
}
4967
{% endhighlight %}
5068
{% endtabs %}
5169

ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.NETCORE/data-label.md

Lines changed: 99 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,15 @@ Data label can be added to a chart series by enabling the [`visible`](https://h
1717
{% highlight cshtml tabtitle="CSHTML" %}
1818
{% include code-snippet/chart/accumulation-charts/datalabel/default/tagHelper %}
1919
{% endhighlight %}
20-
{% highlight c# tabtitle="Default.cs" %}
21-
{% include code-snippet/chart/accumulation-charts/datalabel/default/default.cs %}
20+
{% highlight c# tabtitle="CSHTML.cs" %}
21+
...
22+
public class PieChartData
23+
{
24+
public string xValue;
25+
public double yValue;
26+
public string text;
27+
public string fill;
28+
}
2229
{% endhighlight %}
2330
{% endtabs %}
2431

@@ -30,8 +37,15 @@ Accumulation chart provides support for placing the data label either `inside` o
3037
{% highlight cshtml tabtitle="CSHTML" %}
3138
{% include code-snippet/chart/accumulation-charts/datalabel/position/tagHelper %}
3239
{% endhighlight %}
33-
{% highlight c# tabtitle="Position.cs" %}
34-
{% include code-snippet/chart/accumulation-charts/datalabel/position/position.cs %}
40+
{% highlight c# tabtitle="CSHTML.cs" %}
41+
...
42+
public class PieChartData
43+
{
44+
public string xValue;
45+
public double yValue;
46+
public string text;
47+
public string fill;
48+
}
3549
{% endhighlight %}
3650
{% endtabs %}
3751

@@ -43,8 +57,15 @@ Data labels will be arranged smartly without overlapping with each other. You ca
4357
{% highlight cshtml tabtitle="CSHTML" %}
4458
{% include code-snippet/chart/accumulation-charts/datalabel/smartlabels/tagHelper %}
4559
{% endhighlight %}
46-
{% highlight c# tabtitle="Smartlabels.cs" %}
47-
{% include code-snippet/chart/accumulation-charts/datalabel/smartlabels/smartlabels.cs %}
60+
{% highlight c# tabtitle="CSHTML.cs" %}
61+
...
62+
public class PieChartData
63+
{
64+
public string xValue;
65+
public double yValue;
66+
public string text;
67+
public string fill;
68+
}
4869
{% endhighlight %}
4970
{% endtabs %}
5071

@@ -56,8 +77,15 @@ Label content can be formatted by using the template option. Inside the template
5677
{% highlight cshtml tabtitle="CSHTML" %}
5778
{% include code-snippet/chart/accumulation-charts/datalabel/template/tagHelper %}
5879
{% endhighlight %}
59-
{% highlight c# tabtitle="Template.cs" %}
60-
{% include code-snippet/chart/accumulation-charts/datalabel/template/template.cs %}
80+
{% highlight c# tabtitle="CSHTML.cs" %}
81+
...
82+
public class PieChartData
83+
{
84+
public string xValue;
85+
public double yValue;
86+
public string text;
87+
public string fill;
88+
}
6189
{% endhighlight %}
6290
{% endtabs %}
6391

@@ -69,8 +97,15 @@ Connector line will be visible when the data label is placed `outside` the chart
6997
{% highlight cshtml tabtitle="CSHTML" %}
7098
{% include code-snippet/chart/accumulation-charts/datalabel/connector/tagHelper %}
7199
{% endhighlight %}
72-
{% highlight c# tabtitle="Connector.cs" %}
73-
{% include code-snippet/chart/accumulation-charts/datalabel/connector/connector.cs %}
100+
{% highlight c# tabtitle="CSHTML.cs" %}
101+
...
102+
public class PieChartData
103+
{
104+
public string xValue;
105+
public double yValue;
106+
public string text;
107+
public string fill;
108+
}
74109
{% endhighlight %}
75110
{% endtabs %}
76111

@@ -83,8 +118,15 @@ Text from the data source can be mapped to data label using `name` property.
83118
{% highlight cshtml tabtitle="CSHTML" %}
84119
{% include code-snippet/chart/accumulation-charts/datalabel/map/tagHelper %}
85120
{% endhighlight %}
86-
{% highlight c# tabtitle="Map.cs" %}
87-
{% include code-snippet/chart/accumulation-charts/datalabel/map/map.cs %}
121+
{% highlight c# tabtitle="CSHTML.cs" %}
122+
...
123+
public class PieChartData
124+
{
125+
public string xValue;
126+
public double yValue;
127+
public string text;
128+
public string fill;
129+
}
88130
{% endhighlight %}
89131
{% endtabs %}
90132

@@ -97,8 +139,15 @@ Data label for the accumulation chart can be formatted using [`format`](https://
97139
{% highlight cshtml tabtitle="CSHTML" %}
98140
{% include code-snippet/chart/accumulation-charts/datalabel/format/tagHelper %}
99141
{% endhighlight %}
100-
{% highlight c# tabtitle="format.cs" %}
101-
{% include code-snippet/chart/accumulation-charts/datalabel/format/format.cs %}
142+
{% highlight c# tabtitle="CSHTML.cs" %}
143+
...
144+
public class PieChartData
145+
{
146+
public string xValue;
147+
public double yValue;
148+
public string text;
149+
public string fill;
150+
}
102151
{% endhighlight %}
103152
{% endtabs %}
104153

@@ -167,8 +216,15 @@ Individual text can be customized using the `textRender` event.
167216
{% highlight cshtml tabtitle="CSHTML" %}
168217
{% include code-snippet/chart/accumulation-charts/datalabel/custom/tagHelper %}
169218
{% endhighlight %}
170-
{% highlight c# tabtitle="Custom.cs" %}
171-
{% include code-snippet/chart/accumulation-charts/datalabel/custom/custom.cs %}
219+
{% highlight c# tabtitle="CSHTML.cs" %}
220+
...
221+
public class PieChartData
222+
{
223+
public string xValue;
224+
public double yValue;
225+
public string text;
226+
public string fill;
227+
}
172228
{% endhighlight %}
173229
{% endtabs %}
174230

@@ -180,8 +236,15 @@ When the data label text exceeds the container, the text can be wrapped by using
180236
{% highlight cshtml tabtitle="CSHTML" %}
181237
{% include code-snippet/chart/accumulation-charts/datalabel/textwrap/tagHelper %}
182238
{% endhighlight %}
183-
{% highlight c# tabtitle="Textwrap.cs" %}
184-
{% include code-snippet/chart/accumulation-charts/datalabel/textwrap/textwrap.cs %}
239+
{% highlight c# tabtitle="CSHTML.cs" %}
240+
...
241+
public class PieChartData
242+
{
243+
public string x;
244+
public double y;
245+
public string text;
246+
public string tooltipMappingName;
247+
}
185248
{% endhighlight %}
186249
{% endtabs %}
187250

@@ -197,8 +260,15 @@ You can customize the data label of pie chart using [TextRender](https://help.sy
197260
{% highlight razor tabtitle="CSHTML" %}
198261
{% include code-snippet/chart/accumulation-charts/datalabel/percentage/tagHelper %}
199262
{% endhighlight %}
200-
{% highlight c# tabtitle="Percentage.cs" %}
201-
{% include code-snippet/chart/accumulation-charts/datalabel/percentage/percentage.cs %}
263+
{% highlight c# tabtitle="CSHTML.cs" %}
264+
...
265+
public class PieChartData
266+
{
267+
public string xValue;
268+
public double yValue;
269+
public string text;
270+
public string fill;
271+
}
202272
{% endhighlight %}
203273
{% endtabs %}
204274

@@ -210,8 +280,15 @@ You can display the percentage values in data label of pie chart using `template
210280
{% highlight razor tabtitle="CSHTML" %}
211281
{% include code-snippet/chart/accumulation-charts/datalabel/template-percentage/tagHelper %}
212282
{% endhighlight %}
213-
{% highlight c# tabtitle="Template-percentage.cs" %}
214-
{% include code-snippet/chart/accumulation-charts/datalabel/template-percentage/template-percentage.cs %}
283+
{% highlight c# tabtitle="CSHTML.cs" %}
284+
...
285+
public class PieChartData
286+
{
287+
public string xValue;
288+
public double yValue;
289+
public string text;
290+
public string fill;
291+
}
215292
{% endhighlight %}
216293
{% endtabs %}
217294

ej2-asp-core-mvc/accumulation-chart/EJ2_ASP.NETCORE/empty-points.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Empty Points in ##Platform_Name## Accumulation Chart Component
3+
title: Empty Points in ##Platform_Name## Accumulation Chart Component | Syncfusion
44
description: Learn here all about Empty Points in Syncfusion ##Platform_Name## Accumulation Chart component of Syncfusion Essential JS 2 and more.
55
platform: ej2-asp-core-mvc
66
control: Empty Points
@@ -9,7 +9,7 @@ documentation: ug
99
---
1010

1111

12-
# Empty Points
12+
# Empty Points in ##Platform_Name## Accumulation Chart Component
1313

1414
The data points those uses the `null` or `undefined` as value are considered as empty points. The empty data points are ignored and not plotted in the chart. You can customize those points, using the `emptyPointSettings` property in series. The default mode of the empty point is `Gap`. Other supported modes are `Average` and `Zero`.
1515

@@ -19,8 +19,13 @@ The data points those uses the `null` or `undefined` as value are considered as
1919
{% highlight cshtml tabtitle="CSHTML" %}
2020
{% include code-snippet/chart/accumulation-charts/empty-points/empty/tagHelper %}
2121
{% endhighlight %}
22-
{% highlight c# tabtitle="Empty.cs" %}
23-
{% include code-snippet/chart/accumulation-charts/empty-points/empty/empty.cs %}
22+
{% highlight c# tabtitle="CSHTML.cs" %}
23+
...
24+
public class EmptyPointsChartData
25+
{
26+
public string xValue;
27+
public Nullable<double> yValue;
28+
}
2429
{% endhighlight %}
2530
{% endtabs %}
2631

@@ -48,8 +53,13 @@ Specific color for an empty point can be set by using the `fill` property in `em
4853
{% highlight cshtml tabtitle="CSHTML" %}
4954
{% include code-snippet/chart/accumulation-charts/empty-points/custom/tagHelper %}
5055
{% endhighlight %}
51-
{% highlight c# tabtitle="Custom.cs" %}
52-
{% include code-snippet/chart/accumulation-charts/empty-points/custom/custom.cs %}
56+
{% highlight c# tabtitle="CSHTML.cs" %}
57+
...
58+
public class EmptyPointsChartData
59+
{
60+
public string xValue;
61+
public Nullable<double> yValue;
62+
}
5363
{% endhighlight %}
5464
{% endtabs %}
5565

0 commit comments

Comments
 (0)