From 968547b7630c57ae5152df79fab9a48080a6dc21 Mon Sep 17 00:00:00 2001 From: harsha <harshamidadhala.k@syncfusion.com> Date: Tue, 3 Dec 2024 17:33:53 +0530 Subject: [PATCH 1/6] updated description --- WindowsForms/Pivot-Chart/Drill-UpDown-Level.md | 4 +++- WindowsForms/Pivot-Chart/Export.md | 8 +++++--- .../Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md | 8 +++----- .../FAQ/How-to-set-the-Color-Palette-for-a-Chart.md | 5 +++-- WindowsForms/Pivot-Chart/Zooming-and-Scrolling.md | 4 ++-- 5 files changed, 16 insertions(+), 13 deletions(-) diff --git a/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md b/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md index c347db0c0..13eba048c 100644 --- a/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md +++ b/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md @@ -9,7 +9,9 @@ documentation: ug # Drill Operations in Windows Forms Pivot Chart -Through expanders, you can drill down to the next level of hierarchy and drill up to the previous level. The pivot chart has built-in support to drill up and down the PivotSeries population. This behavior can be achieved by enabling the `AllowDrillDown` property. +Pivot charts utilize expanders for efficient navigation of hierarchical data, allowing users to drill down into detailed levels or drill up for aggregated overviews. These interactive elements enable users to transition from broad summaries to intricate details, such as moving from an annual sales overview to quarterly, monthly, or daily trends, thereby uncovering deeper insights within datasets. The complementary drill-up function allows users to return to higher summary levels for comprehensive context, enhancing data exploration. + +This navigation capability can be easily activated in the pivot chart control through the `AllowDrillDown` property. By toggling this property, developers can facilitate intuitive hierarchical navigation across the PivotSeries population, providing users with seamless transitions between various data levels. This functionality is crucial for enabling flexible data analysis, ensuring that users can access the appropriate level of detail or summary as needed. {% highlight c# %} diff --git a/WindowsForms/Pivot-Chart/Export.md b/WindowsForms/Pivot-Chart/Export.md index 97d76e5bb..707474f3a 100644 --- a/WindowsForms/Pivot-Chart/Export.md +++ b/WindowsForms/Pivot-Chart/Export.md @@ -9,7 +9,11 @@ documentation: ug # Exporting in Windows Forms Pivot Chart -You can export pivot data to Microsoft Excel. The exported data interaction is enabled in the Excel. +The Windows Forms Pivot Chart offers the capability to export pivot data to Microsoft Excel, facilitating an interactive data exploration experience within Excel. This feature is compatible with multiple versions of Excel and supports various chart types. + +To export the data, you can use the `ExcelExport` class, as demonstrated in the example below. By configuring export settings such as the Excel version and the desired chart type, the export operation can be executed seamlessly. + +Below is a guide to performing the export: {% highlight c# %} @@ -26,5 +30,3 @@ Dim excelExport As New ExcelExport(Me.pivotChart1, Syncfusion.XlsIO.ExcelVersion excelExport.Export(saveDialog.FileName) {% endhighlight %} - -Sample: <InstalledLocation>\Syncfusion\EssentialStudio\<InstalledVersion>\Windows\PivotChart.Windows\Samples\Exporting\PivotChartExport Demo\CS diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md index 176d33a15..81701b8ce 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md @@ -9,14 +9,12 @@ documentation: ug # How to Print the PivotChart -The PivotChart has in-built support to print the pivotal data. This can be achieved by using the Print method available in the PrintDocument extension of PivotChart component. - -{% highlight C# %} - +The pivot chart control includes built-in functionality for printing pivotal data, making it easy to create hard copies of charts. This is achieved using the Print method provided by the PrintDocument extension of the pivot chart component. +To print the pivot chart, you can follow these steps using a print dialog: +{% highlight C# %} - PrintDialog printDialog1 = new System.Windows.Forms.PrintDialog(); diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md index 8b2dd2b46..cfe0a83f3 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md @@ -9,8 +9,9 @@ documentation: ug # How to set the Color Palette for a Chart -Custom color Palette can be specified in PivotChart by using the CustomPalette color collection. +Setting a custom color palette for a PivotChart allows you to tailor its visual appearance to better match your application's design or to emphasize specific data points. You can achieve this by specifying colors in the `CustomPalette` property. +Here’s how you can set a custom color palette using C#: {% highlight C# %} @@ -20,7 +21,7 @@ Custom color Palette can be specified in PivotChart by using the CustomPalette c this.pivotChart1.CustomPalette = new System.Drawing.Color[] {System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(203)))), ((int)(((byte)(216))))),System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(209)))), ((int)(((byte)(248))))),System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(155)))), ((int)(((byte)(155)))))}; {% endhighlight %} - +Here’s how you can set a custom color palette using VB.NET: {% highlight vbnet %} diff --git a/WindowsForms/Pivot-Chart/Zooming-and-Scrolling.md b/WindowsForms/Pivot-Chart/Zooming-and-Scrolling.md index 36e92598b..32006806d 100644 --- a/WindowsForms/Pivot-Chart/Zooming-and-Scrolling.md +++ b/WindowsForms/Pivot-Chart/Zooming-and-Scrolling.md @@ -9,6 +9,6 @@ documentation: ug # Zooming and Scrolling in Windows Forms Pivot Chart -You can zoom and scroll the pivot chart. Zooming can be enabled for single or both axes. +The pivot chart control in Windows Forms offers functionality for zooming and scrolling, which enhances the interactivity and usability of visual data presentations. Users can focus on specific data points by zooming into the chart along a single axis or both axes, enabling detailed analysis without distractions from the broader dataset. -Sample: <InstalledLocation>\ Syncfusion\EssentialStudio\<InstalledVersion>\Windows\PivotChart.Windows\Samples\Zooming and Scrolling\Zooming and Scrolling\CS +This interactivity is achieved by configuring the chart to support zoom operations. Zooming can be selectively enabled for the x-axis, y-axis, or both, depending on the type of data visualization required. This flexibility allows users to examine trends, outliers, and patterns within their data with precision. From 7ab6e2f128190c1352e8d82e276b5b080746b1dc Mon Sep 17 00:00:00 2001 From: harsha <harshamidadhala.k@syncfusion.com> Date: Tue, 3 Dec 2024 18:04:49 +0530 Subject: [PATCH 2/6] updated description for drill --- WindowsForms/Pivot-Chart/Drill-UpDown-Level.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md b/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md index 13eba048c..a82daa493 100644 --- a/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md +++ b/WindowsForms/Pivot-Chart/Drill-UpDown-Level.md @@ -9,9 +9,9 @@ documentation: ug # Drill Operations in Windows Forms Pivot Chart -Pivot charts utilize expanders for efficient navigation of hierarchical data, allowing users to drill down into detailed levels or drill up for aggregated overviews. These interactive elements enable users to transition from broad summaries to intricate details, such as moving from an annual sales overview to quarterly, monthly, or daily trends, thereby uncovering deeper insights within datasets. The complementary drill-up function allows users to return to higher summary levels for comprehensive context, enhancing data exploration. +Pivot charts with expanders efficiently navigate hierarchical data through drill-down and drill-up capabilities, allowing for detailed exploration or aggregated overviews. Users can transition from broad summaries, such as annual sales, to detailed trends like quarterly, monthly, or daily data, revealing valuable insights. The drill-up function helps users return to higher summary levels for comprehensive context. -This navigation capability can be easily activated in the pivot chart control through the `AllowDrillDown` property. By toggling this property, developers can facilitate intuitive hierarchical navigation across the PivotSeries population, providing users with seamless transitions between various data levels. This functionality is crucial for enabling flexible data analysis, ensuring that users can access the appropriate level of detail or summary as needed. +This feature is activated via the `AllowDrillDown` property in the pivot chart control. By toggling this property, developers enable intuitive navigation across PivotSeries, facilitating smooth transitions between data levels. It ensures flexible data analysis, providing access to both necessary details and summaries. {% highlight c# %} From d4949cf46cf197560c582391bbf1cd94201e6681 Mon Sep 17 00:00:00 2001 From: harsha <harshamidadhala.k@syncfusion.com> Date: Tue, 3 Dec 2024 18:56:43 +0530 Subject: [PATCH 3/6] updated description --- WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md | 2 +- .../Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md index 81701b8ce..6818ce553 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-Print-the-PivotChart.md @@ -1,7 +1,7 @@ --- layout: post title: How to Print the PivotChart | Windows Forms | Syncfusion -description: How to Print the PivotChart +description: How to Print in the Syncfusion Windows Forms Pivot Chart control that allows users to generate a copy of the chart. platform: windowsforms control: PivotChart documentation: ug diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md index b820310c0..3148412a8 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md @@ -1,7 +1,7 @@ --- layout: post title: How to enable drill down in PivotChart | Windows Forms | Syncfusion -description: How to enable drill down in PivotChart +description: How to enable drill down operations in Syncfusion Windows Forms Pivot Chart control that allow users to explore hierarchical data interactively by expanding and collapsing specific levels. platform: windowsforms control: PivotChart documentation: ug From 71bba1631acd7442b81610952c30c1fa12a6cddf Mon Sep 17 00:00:00 2001 From: harsha <harshamidadhala.k@syncfusion.com> Date: Tue, 3 Dec 2024 19:10:18 +0530 Subject: [PATCH 4/6] updated description for How-to-set-the-Color-Palette-for-a-Chart --- .../Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md | 2 +- .../Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md index 3148412a8..c4f8c6b8e 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-enable-drill-down-in-PivotChart.md @@ -1,7 +1,7 @@ --- layout: post title: How to enable drill down in PivotChart | Windows Forms | Syncfusion -description: How to enable drill down operations in Syncfusion Windows Forms Pivot Chart control that allow users to explore hierarchical data interactively by expanding and collapsing specific levels. +description: How to enable drill down in Syncfusion WinForms Pivot Chart to explore hierarchies by expanding and collapsing levels interactively. platform: windowsforms control: PivotChart documentation: ug diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md index cfe0a83f3..a02bca410 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md @@ -1,7 +1,7 @@ --- layout: post title: How to set color pallette for chart | Windows Forms | Syncfusion -description: How to set the Color Palette for a Chart +description: How to set the color palette in Syncfusion WinForms Pivot Chart using the Palette property to customize chart series colors. platform: windowsforms control: PivotChart documentation: ug From 4efbd000265761720577879d6b92c84a3710d562 Mon Sep 17 00:00:00 2001 From: harsha <harshamidadhala.k@syncfusion.com> Date: Tue, 3 Dec 2024 19:41:05 +0530 Subject: [PATCH 5/6] updated property name --- .../Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md b/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md index a02bca410..ed2646a44 100644 --- a/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md +++ b/WindowsForms/Pivot-Chart/FAQ/How-to-set-the-Color-Palette-for-a-Chart.md @@ -1,7 +1,7 @@ --- layout: post title: How to set color pallette for chart | Windows Forms | Syncfusion -description: How to set the color palette in Syncfusion WinForms Pivot Chart using the Palette property to customize chart series colors. +description: How to set the color palette in Syncfusion WinForms Pivot Chart using the CustomPalette property to customize chart series colors. platform: windowsforms control: PivotChart documentation: ug From 70f997d29a0f4f8f28ffd595d39a31ef820683a9 Mon Sep 17 00:00:00 2001 From: harsha <harshamidadhala.k@syncfusion.com> Date: Fri, 6 Dec 2024 13:03:29 +0530 Subject: [PATCH 6/6] removed content --- WindowsForms/Pivot-Chart/Export.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WindowsForms/Pivot-Chart/Export.md b/WindowsForms/Pivot-Chart/Export.md index 707474f3a..46240d8c1 100644 --- a/WindowsForms/Pivot-Chart/Export.md +++ b/WindowsForms/Pivot-Chart/Export.md @@ -9,7 +9,7 @@ documentation: ug # Exporting in Windows Forms Pivot Chart -The Windows Forms Pivot Chart offers the capability to export pivot data to Microsoft Excel, facilitating an interactive data exploration experience within Excel. This feature is compatible with multiple versions of Excel and supports various chart types. +The Windows Forms Pivot Chart offers the capability to export pivot data to Microsoft Excel, facilitating an interactive data exploration experience within Excel. To export the data, you can use the `ExcelExport` class, as demonstrated in the example below. By configuring export settings such as the Excel version and the desired chart type, the export operation can be executed seamlessly.