-
Notifications
You must be signed in to change notification settings - Fork 1
Improve MAUI Toolkit Cartesian Chart UG Content Using Syncfusion Continue AI #308
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
base: hotfix/hotfix-v29.1.33
Are you sure you want to change the base?
Conversation
Build Status: INPROGRESS 🔃 |
CI Status: SUCCESS ✅ |
// Create a horizontal line annotation | ||
var horizontalLineAnnotation = new HorizontalLineAnnotation() | ||
{ | ||
Y1 = 20, | ||
}; | ||
|
||
// Add the vertical and horizontal line annotations to the chart's annotations. | ||
// Add the vertical and horizontal line annotations to the chart's annotations |
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.
@Harsha-SF4223 why removed full stop at the sentence end?
* [VerticalTextAlignment](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.Charts.ChartAnnotationLabelStyle.html#Syncfusion_Maui_Toolkit_Charts_ChartAnnotationLabelStyle_VerticalTextAlignment) - Gets or sets the vertical alignment of the label. | ||
|
||
## View annotation | ||
## View Annotation |
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.
@Harsha-SF4223 why changed for this type alone? Whether needed to update other annotation types also?
@@ -172,7 +170,6 @@ SfCartesianChart chart = new SfCartesianChart(); | |||
. . . | |||
NumericalAxis primaryAxis = new NumericalAxis() | |||
{ | |||
// Set the edge labels to always be visible, ensuring they don't get clipped or hidden. |
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.
@Harsha-SF4223 why removed comments?
@@ -237,7 +234,6 @@ SfCartesianChart chart = new SfCartesianChart(); | |||
. . . | |||
CategoryAxis primaryAxis = new CategoryAxis() | |||
{ | |||
// Set the labels intersect action to "MultipleRows", allowing labels to be positioned on multiple rows to avoid overlap |
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.
@Harsha-SF4223 why removed comments?
@@ -197,18 +201,19 @@ NumericalAxis primaryAxis = new NumericalAxis(); | |||
chart.XAxes.Add(primaryAxis); | |||
|
|||
NumericalAxis secondaryAxis = new NumericalAxis() { MinorTicksPerInterval = 2 }; | |||
// Define the style for the minor grid lines on the Y-axis. | |||
// Define the style for the minor grid lines on the Y-axis |
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.
@Harsha-SF4223 why removed full stop?
ChartLineStyle gridLineStyle = new ChartLineStyle() | ||
{ | ||
Stroke = Colors.Black, | ||
StrokeWidth = 0.8, | ||
StrokeDashArray = doubleCollection, | ||
}; | ||
// Apply the grid line style to the minor grid lines of the secondary axis. | ||
// Apply the grid line style to the minor grid lines of the secondary axis |
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.
@Harsha-SF4223 why removed full stop?
Description
Updated the Ug content for the Cartesian Chart.
Ensured the following points.