From e63f02ef4d0908b5d59cbc302e3753af833e2f0d Mon Sep 17 00:00:00 2001 From: Jothika4341 Date: Wed, 19 Nov 2025 17:35:06 +0530 Subject: [PATCH 1/5] Updated the changes --- winui/samples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winui/samples.md b/winui/samples.md index b5074b91..bb279fff 100644 --- a/winui/samples.md +++ b/winui/samples.md @@ -51,7 +51,7 @@ All the sample browser projects are configured as single SDK-style projects that When you click the `Run Local Demos` or `Explore Demo Source` button, the `net10.0-windows` entry will be automatically removed from the targets file if `.NET 10` is not installed on your machine, preventing any compilation errors. -To use the `.NET 10 framework`, install the required SDK and add `net10.0-windows` to the `` tag in the `MultiTargeting.targets` file located at the Samples Location:[..\WinUI\31.2.9\SampleBrowser\targets\MultiTargeting.targets] as shown in the image below. +To use the `.NET 10 framework`, install the required SDK and add `net10.0-windows` to the `` tag in the `MultiTargeting.targets` file located at the Samples Location:[..\WinUI\31.2.12\SampleBrowser\targets\MultiTargeting.targets] as shown in the image below. ![WinUI TargetFrameworks](Guide-to-run-the-samples-images/TargetFrameworks_winui.png) From 93702a72165293ea6d537830e5d2f3f41ce609c2 Mon Sep 17 00:00:00 2001 From: Deepak Raj Sundar Date: Fri, 12 Dec 2025 13:52:45 +0530 Subject: [PATCH 2/5] Added the release notes MD file and corresponding node entry in the TOC.html file --- winui-toc.html | 2 +- winui/Release-notes/v32.1.19.md | 45 +++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 winui/Release-notes/v32.1.19.md diff --git a/winui-toc.html b/winui-toc.html index 413154bc..a1bf9c8f 100644 --- a/winui-toc.html +++ b/winui-toc.html @@ -689,7 +689,7 @@
  • Release Notes -
      +
      • 2025 Volume 4 - v32.*
      • 2025 Volume 3 - v31.*
        • Weekly Nuget Release diff --git a/winui/Release-notes/v32.1.19.md b/winui/Release-notes/v32.1.19.md new file mode 100644 index 00000000..b4c15c3b --- /dev/null +++ b/winui/Release-notes/v32.1.19.md @@ -0,0 +1,45 @@ +--- +title: Essential Studio® for WinUI Release Notes - v32.1.19 +description: Learn here about the controls in the Essential Studio® for WinUI 2025 Volume 4 Main Release - Release Notes - v32.1.19 +platform: winui +documentation: ug +--- + +# Essential Studio® for WinUI - v32.1.19 Release Notes + +{% include release-info.html date="December 15, 2025" version="v32.1.19" passed="10915" failed="0" %} + +{% directory path: _includes/release-notes/v32.1.19 %} + +{% include {{file.url}} %} + +{% enddirectory %} + +## Test Results + +| Component Name | Test Cases | Passed | Failed | Remarks | +|---------------|------------|--------|--------|---------| +| AutoComplete | 30 | 30 | 0 | All Passed | +| AvatarView | 261 | 261 | 0 | All Passed | +| Badge | 187 | 187 | 0 | All Passed | +| Barcode | 293 | 293 | 0 | All Passed | +| Calendar | 114 | 114 | 0 | All Passed | +| Calendar Date Picker | 130 | 130 | 0 | All Passed | +| Calendar DateRange Picker | 174 | 174 | 0 | All Passed | +| Color Palette | 53 | 53 | 0 | All Passed | +| ComboBox | 100 | 100 | 0 | All Passed | +| DataGrid | 547 | 547 | 0 | All Passed | +| Date Picker | 82 | 82 | 0 | All Passed | +| Kanban Board | 1335 | 1335 | 0 | All Passed | +| Linear Gauge | 1184 | 1184 | 0 | All Passed | +| Radial Gauge | 397 | 397 | 0 | All Passed | +| Range Slider | 149 | 149 | 0 | All Passed | +| Ribbon | 50 | 50 | 0 | All Passed | +| Scheduler | 1099 | 1099 | 0 | All Passed | +| Segmented Control | 50 | 50 | 0 | All Passed | +| SfCartesianChart | 4032 | 4032 | 0 | All Passed | +| SfPolarChart | 352 | 352 | 0 | All Passed | +| SfRating | 44 | 44 | 0 | All Passed | +| SfShadow | 41 | 41 | 0 | All Passed | +| Slider | 139 | 139 | 0 | All Passed | +| Time Picker | 72 | 72 | 0 | All Passed | \ No newline at end of file From e78eac14cf4eb807015010f77e62364f746f93be Mon Sep 17 00:00:00 2001 From: Jothika4341 Date: Fri, 12 Dec 2025 15:14:06 +0530 Subject: [PATCH 3/5] Updated the UG content for Vol 4 Main Release --- winui/samples.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/winui/samples.md b/winui/samples.md index bb279fff..d365ff6b 100644 --- a/winui/samples.md +++ b/winui/samples.md @@ -47,14 +47,6 @@ For example, following is a demonstration to run an individual `Chart` control p ![Running an individual control project](Guide-to-run-the-samples-images/run-induvidual-control-project.png) -All the sample browser projects are configured as single SDK-style projects that support multiple frameworks: `.NET 8.0`, `.NET 9.0`, and `.NET 10`. - -When you click the `Run Local Demos` or `Explore Demo Source` button, the `net10.0-windows` entry will be automatically removed from the targets file if `.NET 10` is not installed on your machine, preventing any compilation errors. - -To use the `.NET 10 framework`, install the required SDK and add `net10.0-windows` to the `` tag in the `MultiTargeting.targets` file located at the Samples Location:[..\WinUI\31.2.12\SampleBrowser\targets\MultiTargeting.targets] as shown in the image below. - -![WinUI TargetFrameworks](Guide-to-run-the-samples-images/TargetFrameworks_winui.png) - ## Online Sample * Download and install demos from [Microsoft Store](https://apps.microsoft.com/detail/9n0fp16ddc06?hl=en-GB&gl=IN). From b00b8dc1583d0404108304233dac464ed45689ad Mon Sep 17 00:00:00 2001 From: Priyadharshini-Sf4862 Date: Fri, 12 Dec 2025 17:05:36 +0530 Subject: [PATCH 4/5] Cartesian chart data template items updated --- winui/Cartesian-Charts/Legend.md | 10 ++++++---- winui/Cartesian-Charts/Tooltip.md | 6 ++++-- winui/Cartesian-Charts/Trackball.md | 20 +++++++++++--------- 3 files changed, 21 insertions(+), 15 deletions(-) diff --git a/winui/Cartesian-Charts/Legend.md b/winui/Cartesian-Charts/Legend.md index 3ae575d2..65668e3f 100644 --- a/winui/Cartesian-Charts/Legend.md +++ b/winui/Cartesian-Charts/Legend.md @@ -467,20 +467,20 @@ Customize each legend item by using the [`ItemTemplate`](https://help.syncfusion {% highlight xaml %} - + - + + Text="{Binding Item._XAxesData}"/> @@ -505,3 +505,5 @@ chart.Legend = new ChartLegend() {% endtabs %} ![Legend ItemTemplate support in WinUI Chart](Legend_images/WinUI_chart_legend_itemTemplate.png) + +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html#Syncfusion_UI_Xaml_Charts_LegendItem_Item) can be used to access the data linked to the associated model class. The binding context for ChartLegend `ItemTemplate` is [LegendItem](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html), which provides the necessary data for the legend labels. \ No newline at end of file diff --git a/winui/Cartesian-Charts/Tooltip.md b/winui/Cartesian-Charts/Tooltip.md index 43508676..aef017e6 100644 --- a/winui/Cartesian-Charts/Tooltip.md +++ b/winui/Cartesian-Charts/Tooltip.md @@ -581,9 +581,9 @@ The [SfCartesianChart](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.C {% highlight xaml %} - + - + The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html#Syncfusion_UI_Xaml_Charts_ChartSegment_Item) can be used to access the data linked to the associated model class. The binding context for Chart `TooltipTemplate` is [ChartSegment](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html), which provides the necessary data for the tootip labels. + diff --git a/winui/Cartesian-Charts/Trackball.md b/winui/Cartesian-Charts/Trackball.md index 73a0b382..7aabbfd3 100644 --- a/winui/Cartesian-Charts/Trackball.md +++ b/winui/Cartesian-Charts/Trackball.md @@ -513,18 +513,18 @@ The following screenshot illustrates the trackball label for multiple series, wh {% highlight xaml %} - + . . . - + - - + BorderThickness="1" + BorderBrush="Black" + Background="LightGreen" + Padding="5"> + + . . . @@ -568,6 +568,8 @@ chart.Series.Add(series); ![Trackball templte support for Trackball in WinUI Chart](Trackball_images/WinUI_chart_trackball_label_template.png) +N> The binding context for Chart `TrackballLabelTemplate` is [ChartPointInfo](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartPointInfo.html), which provides the necessary data for the trackball labels. + ### Applying Series Interior Interior color of the series is applied to the series label by setting [UseSeriesPalette](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartTrackballBehavior.html#Syncfusion_UI_Xaml_Charts_ChartTrackballBehavior_UseSeriesPalette) to true as shown in the following code snippet. From 4fb9f7c543dd61306ec426c2182a4470be8877c2 Mon Sep 17 00:00:00 2001 From: Priyadharshini-Sf4862 Date: Fri, 12 Dec 2025 17:30:27 +0530 Subject: [PATCH 5/5] Updated all the chart template codes --- winui/Circular-Charts/Legend.md | 33 ++++++++-------- winui/Circular-Charts/Tooltip.md | 64 ++++++++++++++++---------------- winui/Funnel-Chart/Legend.md | 35 +++++++++-------- winui/Funnel-Chart/Tooltip.md | 15 +++++--- winui/Polar-Chart/Legend.md | 26 +++++++------ winui/Pyramid-Chart/Legend.md | 43 +++++++++++---------- winui/Pyramid-Chart/Tooltip.md | 31 +++++++++------- 7 files changed, 127 insertions(+), 120 deletions(-) diff --git a/winui/Circular-Charts/Legend.md b/winui/Circular-Charts/Legend.md index fd82c3bd..457e2b7d 100644 --- a/winui/Circular-Charts/Legend.md +++ b/winui/Circular-Charts/Legend.md @@ -399,32 +399,29 @@ Customize each legend item by using [ItemTemplate](https://help.syncfusion.com/c {% highlight xaml %} - - - - - - + + + + + + FontWeight="SemiBold" + Text="{Binding Item._XAxesData}"/> - - + . . . - {% endhighlight %} @@ -444,3 +441,5 @@ chart.Legend = new ChartLegend() ![Item template support for legend in WinUI Pie Chart](Legend_Images/WinUI_pie_chart_legend_template.png) +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html#Syncfusion_UI_Xaml_Charts_LegendItem_Item) can be used to access the data linked to the associated model class. The binding context for ChartLegend `ItemTemplate` is [LegendItem](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html), which provides the necessary data for the legend labels. + diff --git a/winui/Circular-Charts/Tooltip.md b/winui/Circular-Charts/Tooltip.md index a175917e..4c5887ef 100644 --- a/winui/Circular-Charts/Tooltip.md +++ b/winui/Circular-Charts/Tooltip.md @@ -182,37 +182,37 @@ Circular chart provides support to customize the appearance of the tooltip by us {% highlight xaml %} - - - - - - - - - - - - + + + + + + + + + + + + . . . The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html#Syncfusion_UI_Xaml_Charts_ChartSegment_Item) can be used to access the data linked to the associated model class. The binding context for Chart `TooltipTemplate` is [ChartSegment](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html), which provides the necessary data for the tootip labels. + diff --git a/winui/Funnel-Chart/Legend.md b/winui/Funnel-Chart/Legend.md index cd88a994..558e8d2e 100644 --- a/winui/Funnel-Chart/Legend.md +++ b/winui/Funnel-Chart/Legend.md @@ -324,32 +324,29 @@ Customize each legend item by using the [ItemTemplate](https://help.syncfusion.c {% highlight xaml %} - - - - - - + + + + + + FontWeight="SemiBold" + Text="{Binding Item._XAxesData}"/> - - -. . . + + . . . - {% endhighlight %} @@ -369,3 +366,5 @@ this.Content = chart; {% endtabs %} ![Legend ItemTemplate support in WinUI Chart](Legend_images/winui-chart_legend_item_customizing.png) + +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html#Syncfusion_UI_Xaml_Charts_LegendItem_Item) can be used to access the data linked to the associated model class. The binding context for ChartLegend `ItemTemplate` is [LegendItem](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html), which provides the necessary data for the legend labels. diff --git a/winui/Funnel-Chart/Tooltip.md b/winui/Funnel-Chart/Tooltip.md index 53d98bb4..f5c8340c 100644 --- a/winui/Funnel-Chart/Tooltip.md +++ b/winui/Funnel-Chart/Tooltip.md @@ -180,9 +180,9 @@ The following code example explains how to display both x-value and y-value in t {% highlight xaml %} - - - + + + - - + +. . . - + + {% endhighlight %} @@ -243,3 +244,5 @@ this.Content = chart; {% endtabs %} ![Tooltip template in WinUI Chart](Tooltip_Images/winui-chart_tooltip_template.png) + +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html#Syncfusion_UI_Xaml_Charts_ChartSegment_Item) can be used to access the data linked to the associated model class. The binding context for Chart `TooltipTemplate` is [ChartSegment](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html), which provides the necessary data for the tootip labels. diff --git a/winui/Polar-Chart/Legend.md b/winui/Polar-Chart/Legend.md index 1a5d573c..1ad8ee13 100644 --- a/winui/Polar-Chart/Legend.md +++ b/winui/Polar-Chart/Legend.md @@ -309,26 +309,26 @@ Customize each legend item by using the [ItemTemplate](https://help.syncfusion.c - + - - + + FontWeight="SemiBold" + Text="{Binding Item._XAxesData}"/> - ... + . . . - ... + {% endhighlight %} @@ -348,3 +348,5 @@ chart.Legend = new ChartLegend() ![Legend ItemTemplate support in WinUI Chart](Legend_images/WinUI_Chart_Legend_Item_customizing.png) +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html#Syncfusion_UI_Xaml_Charts_LegendItem_Item) can be used to access the data linked to the associated model class. The binding context for ChartLegend `ItemTemplate` is [LegendItem](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html), which provides the necessary data for the legend labels. + diff --git a/winui/Pyramid-Chart/Legend.md b/winui/Pyramid-Chart/Legend.md index a628d65c..132b9e03 100644 --- a/winui/Pyramid-Chart/Legend.md +++ b/winui/Pyramid-Chart/Legend.md @@ -324,32 +324,29 @@ Customize each legend item by using the [ItemTemplate](https://help.syncfusion.c {% highlight xaml %} - - - - - - + + + + + + FontWeight="SemiBold" + Text="{Binding Item._XAxesData}"/> - - + . . . - - - - - + + + + + {% endhighlight %} @@ -369,4 +366,6 @@ this.Content = chart; ![Legend ItemTemplate support in WinUI Chart](Legend_Images/WinUI_chart_legend_itemTemplate.png) +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html#Syncfusion_UI_Xaml_Charts_LegendItem_Item) can be used to access the data linked to the associated model class. The binding context for ChartLegend `ItemTemplate` is [LegendItem](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.LegendItem.html), which provides the necessary data for the legend labels. + diff --git a/winui/Pyramid-Chart/Tooltip.md b/winui/Pyramid-Chart/Tooltip.md index 668716cf..534f6c43 100644 --- a/winui/Pyramid-Chart/Tooltip.md +++ b/winui/Pyramid-Chart/Tooltip.md @@ -188,21 +188,21 @@ The pyramid chart provides support to customize the appearance of the tooltip by {% highlight xaml %} - - - + + + - + . . . - - + +. . . - + + {% endhighlight %} @@ -251,3 +252,5 @@ this.Content = chart; {% endtabs %} ![Tooltip template in WinUI Chart](Tooltip_Images/WinUI_chart_tooltip_template.png) + +N> The [Item](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html#Syncfusion_UI_Xaml_Charts_ChartSegment_Item) can be used to access the data linked to the associated model class. The binding context for Chart `TooltipTemplate` is [ChartSegment](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Charts.ChartSegment.html), which provides the necessary data for the tootip labels.