Documentation(990478) - Improved chart types in winforms chart Phase1 - #1524
Documentation(990478) - Improved chart types in winforms chart Phase1#1524vasavi-s-SF4854 wants to merge 21 commits into
Conversation
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
The running CI Job is terminated due to changes committed on the source branch for this Merge Request and CI triggered for latest commit. |
|
CI Status: ABORTED ❌ |
|
Build Status: INPROGRESS 🔃 |
|
The running CI Job is terminated due to changes committed on the source branch for this Merge Request and CI triggered for latest commit. |
|
CI Status: ABORTED ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
Updated the title and description for clarity and detail.
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
|
Build Status: INPROGRESS 🔃 |
|
CI Status: FAILURE ❌ |
| --- | ||
|
|
||
| # Area charts in windows forms chart | ||
|
|
There was a problem hiding this comment.
Modify the title as Area chart in Windows Forms Charts. Likewise change in other md files
| # Area charts in windows forms chart | ||
|
|
||
| Area charts highlight the magnitude of change over time by rendering data in a continuous, flowing pattern rather than using discrete bars or columns. They feature support for alpha-blending multiple series and provide extensive customization options for the chart's appearance. | ||
|
|
|
|
||
| * **Series Color Settings**: Background and foreground colors for area charts are customized through the [Interior](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartStyleInfo.html#Syncfusion_Windows_Forms_Chart_ChartStyleInfo_Interior) property of the [ChartStyleInfo](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartStyleInfo.html) class. | ||
| * **Chart 3-D Mode**: A chart is rendered in 3-D mode by enabling the [Series3D](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartControl.html#Syncfusion_Windows_Forms_Chart_ChartControl_Series3D) property. | ||
| * **Border Settings**: Border color and width of an area chart can be changed through the [Color](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartLineInfo.html#Syncfusion_Windows_Forms_Chart_ChartLineInfo_Color) and [Width](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartLineInfo.html#Syncfusion_Windows_Forms_Chart_ChartLineInfo_Width) properties. |
There was a problem hiding this comment.
Remove the 3d Chart content here, we can have this in separate md file for Chart 3D
|  | ||
|
|
||
| ## Minbounds and maxbounds | ||
|
|
There was a problem hiding this comment.
If it is subtopic for bubble chart, modify title as ### from ##
| The size of the bubbles depends on MinBounds and MaxBounds of the bubbleItem in series. By default, the minBounds is (20, 20) and MaxBounds is (50, 50), so the width and height of the bubbles lie between 20 and 50. | ||
|
|
||
| You can change the minBounds and maxBounds using the `minBounds` and `maxBounds` properties in series options. | ||
|
|
There was a problem hiding this comment.
Add API Link for minBounds and maxBounds
|
|
||
| ### Bubble type | ||
|
|
||
| The [BubbleType](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartBubbleConfigItem.html#Syncfusion_Windows_Forms_Chart_ChartBubbleConfigItem_BubbleType) property determines the appearance of bubbles in a Bubble chart. Using this property, bubbles can be displayed as a **Circle**, **Square**, or **Image**. |
There was a problem hiding this comment.
Explain the default bubble type is definition and add respective code snippet image
|  | ||
|
|
||
| ### Column width mode | ||
| The [ColumnWidthMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartControl.html#Syncfusion_Windows_Forms_Chart_ChartControl_ColumnWidthMode) property provides three modes for calculating column widths: [DefaultWidthMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartColumnWidthMode.html#Syncfusion_Windows_Forms_Chart_ChartColumnWidthMode_DefaultWidthMode), [FixedWidthMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartColumnWidthMode.html#Syncfusion_Windows_Forms_Chart_ChartColumnWidthMode_FixedWidthMode), and [RelativeWidthMode](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartColumnWidthMode.html#Syncfusion_Windows_Forms_Chart_ChartColumnWidthMode_RelativeWidthMode). |
There was a problem hiding this comment.
Explain the default value in Definition and add image for this. If this is default DefaultWidthMode, set other option in code snippet and then add image.
|
|
||
|
|
||
| ### Column type | ||
| The [ColumnType](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartColumnConfigItem.html#Syncfusion_Windows_Forms_Chart_ChartColumnConfigItem_ColumnType) property provides two types of column display: [Box](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartColumnType.html#Syncfusion_Windows_Forms_Chart_ChartColumnType_Box), and [Cylinder](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Chart.ChartColumnType.html#Syncfusion_Windows_Forms_Chart_ChartColumnType_Cylinder). It works when 3d chart enaable. |
There was a problem hiding this comment.
remove this if it only for Chart 3d
| {% highlight vb %} | ||
| chartControl.Series(0).ConfigItems.ColumnItem.ShadingMode = ChartColumnShadingMode.PhongCylinder | ||
| {% endhighlight %} | ||
| {% endtabs %} |
There was a problem hiding this comment.
Add image for all the above topics
| - [Visible](https://help.syncfusion.com/windowsforms/chart/chart-series#visible) | ||
|
|
||
| # Bar chart in windows forms chart | ||
|
|
There was a problem hiding this comment.
Modify the # tag to ##
| Series(0).ConfigItems.PyramidItem.FigureBase = ChartFigureBase.Square | ||
| {% endhighlight %} | ||
| {% endtabs %} | ||
|
|
There was a problem hiding this comment.
Include image for all the added customization topics
| {% endhighlight %} | ||
| {% endtabs %} | ||
|
|
||
| ### Show sseries title |
There was a problem hiding this comment.
Check the title spell mistake and modify Show sseries title
Priyadharshini4862
left a comment
There was a problem hiding this comment.
@vasavi-s-SF4854 , Address the review corrections

Description:
Updated the winforms chart type by added in separate md files.