-
Notifications
You must be signed in to change notification settings - Fork 33
Updated Accumulation Chart UG documentation #3093
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
aa9a220
Updated Accumulation Chart UG documentation
Backiaraj 57bb00a
Cleared CI error
Backiaraj bf611d2
Updated AppBar UG documentation
Backiaraj 8ecf313
Updated AutoComplete, Avatar, Breadcrumb UG documentation
Backiaraj 5db250b
Merge branch 'hotfix/hotfix-v25.2.3' of https://github.com/syncfusion…
Backiaraj 687e832
Merge branch 'hotfix/hotfix-v26.1.35' of https://github.com/syncfusio…
Backiaraj 307406f
Cleared CI error
Backiaraj bcd8872
Cleared spell error
Backiaraj 5ac479c
Update the UG documents to razor template
Backiaraj 5caaa0f
Cleared CI error
Backiaraj 0c4c852
Modified Bullet Chart UG content and code snippet
Backiaraj 9cd25ba
Merge branch 'hotfix/hotfix-v26.1.35' of https://github.com/syncfusio…
Backiaraj 3f15c5a
Cleared spell error
Backiaraj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
layout: post | ||
title: Annotation in ##Platform_Name## Accumulation Chart Component | ||
title: Annotation in ##Platform_Name## Accumulation Chart Component | Syncfusion | ||
description: Learn here all about Annotation in Syncfusion ##Platform_Name## Accumulation Chart component of Syncfusion Essential JS 2 and more. | ||
platform: ej2-asp-core-mvc | ||
control: Annotation | ||
|
@@ -9,7 +9,7 @@ documentation: ug | |
--- | ||
|
||
|
||
# Annotation | ||
# Annotation in ##Platform_Name## Accumulation Chart Component | ||
|
||
The annotations are used to mark the specific area of interest in the chart area with texts, shapes or images. | ||
|
||
|
@@ -23,8 +23,13 @@ By using the <code>content</code> option of annotation property, you can specify | |
{% highlight cshtml tabtitle="CSHTML" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/annotation/tagHelper %} | ||
{% endhighlight %} | ||
{% highlight c# tabtitle="Annotation.cs" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/annotation/annotation.cs %} | ||
{% highlight c# tabtitle="CSHTML.cs" %} | ||
... | ||
public class PieChartData | ||
{ | ||
public string xValue; | ||
public double yValue; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. variable casing is incorrect |
||
} | ||
{% endhighlight %} | ||
{% endtabs %} | ||
|
||
|
@@ -52,8 +57,13 @@ The annotation can be placed with respect to either `Series` or `Chart`. | |
{% highlight cshtml tabtitle="CSHTML" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/region/tagHelper %} | ||
{% endhighlight %} | ||
{% highlight c# tabtitle="Region.cs" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/region/region.cs %} | ||
{% highlight c# tabtitle="CSHTML.cs" %} | ||
... | ||
public class PieChartData | ||
{ | ||
public string x; | ||
public double y; | ||
} | ||
{% endhighlight %} | ||
{% endtabs %} | ||
|
||
|
@@ -81,8 +91,13 @@ Specifies the coordinate units of an annotation either in `Pixel` or `Point`. | |
{% highlight cshtml tabtitle="CSHTML" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/co-ordinate/tagHelper %} | ||
{% endhighlight %} | ||
{% highlight c# tabtitle="Co-ordinate.cs" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/co-ordinate/co-ordinate.cs %} | ||
{% highlight c# tabtitle="CSHTML.cs" %} | ||
... | ||
public class PieChartData | ||
{ | ||
public string x; | ||
public double y; | ||
} | ||
{% endhighlight %} | ||
{% endtabs %} | ||
|
||
|
@@ -110,8 +125,13 @@ The annotations can be moved vertically and horizontally from its default positi | |
{% highlight cshtml tabtitle="CSHTML" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/alignment/tagHelper %} | ||
{% endhighlight %} | ||
{% highlight c# tabtitle="Alignment.cs" %} | ||
{% include code-snippet/chart/accumulation-charts/annotation/alignment/alignment.cs %} | ||
{% highlight c# tabtitle="CSHTML.cs" %} | ||
... | ||
public class PieChartData | ||
{ | ||
public string x; | ||
public double y; | ||
} | ||
{% endhighlight %} | ||
{% endtabs %} | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Share reason to change inline code block
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @rajendranr-5483 ,
Because, Annotation.cs class is used in both platforms (Core and MVC). I checked only core platform. So, i added code snippet inside here.
Also, some codebehind file is mentioned like below,
var opt=new Games().GamesList(); --> in documentation only mentioned this. Not include data inside this method.
Refer below,

Regards,
@Backiaraj