diff --git a/Jenkinsfile b/Jenkinsfile index 814ce28a6..ca60c178f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -node('Maui') +node('GithubContent') { timestamps { @@ -6,93 +6,90 @@ timestamps def Content=""; env.PATH = "${ProgramFiles}"+"\\Git\\mingw64\\bin;${env.PATH}" - timeout(time: 7200000, unit: 'MILLISECONDS') { -String platform='chart-sdk'; - try - { - //Clone scm repository in Workspace source directory - stage ('Checkout') - { - dir('Spell-Checker') - { - checkout scm - + timeout(time: 7200000, unit: 'MILLISECONDS') { + String platform='chart-sdk'; + try + { + //Clone scm repository in Workspace source directory + stage ('Checkout') + { + dir('Spell-Checker') + { + checkout scm - def page = 1 - while(true) - { - def branchCommit = 'https://api.github.com/repos/syncfusion-content/'+env.githubSourceRepoHttpUrl.split('/')[env.githubSourceRepoHttpUrl.split('/').size() - 1]+'/pulls/' + env.pullRequestId + '/files?per_page=100^&page='+ page - String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' + env.GithubBuildAutomation_PrivateToken + " " + branchCommit + def page = 1 + while(true) + { + def branchCommit = 'https://api.github.com/repos/syncfusion-content/'+env.githubSourceRepoHttpUrl.split('/')[env.githubSourceRepoHttpUrl.split('/').size() - 1]+'/pulls/' + env.pullRequestId + '/files?per_page=100^&page='+ page + String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' + env.GithubBuildAutomation_PrivateToken + " " + branchCommit - def ChangeFiles= branchCommitDetails.split('"filename": '); + def ChangeFiles= branchCommitDetails.split('"filename": '); - for (int i= 1; i < ChangeFiles.size();i++) - { - def ChangeFile= ChangeFiles[i].split(',')[0].replace('"', '') - Content += env.WORKSPACE + "\\Spell-Checker\\" + ChangeFile + "\r\n"; - } + for (int i= 1; i < ChangeFiles.size();i++) + { + def ChangeFile= ChangeFiles[i].split(',')[0].replace('"', '') + Content += env.WORKSPACE + "\\Spell-Checker\\" + ChangeFile + "\r\n"; + } - // Last page - if((ChangeFiles.size() - 1) < 100) - { - break - } - page++ - } - - if (Content) { - writeFile file: env.WORKSPACE+"/cireports/content.txt", text: Content - } - else { - writeFile file: env.WORKSPACE+"/cireports/content.txt", text: "There are no filepaths found for this commit." - } - - } - - //Checkout the ug_spellchecker from development Source - checkout([$class: 'GitSCM', branches: [[name: '*/development']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'ug_spellchecker']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: env.githubCredentialId, url: 'https://github.com/syncfusion-content/ug_spellchecker.git']]]) - - } - - } - - catch(Exception e) - { - currentBuild.result = 'FAILURE' - } + // Last page + if((ChangeFiles.size() - 1) < 100) + { + break + } + page++ + } -if(currentBuild.result != 'FAILURE') -{ - stage 'Build Source' - try - { - gitlabCommitStatus("Build") - { - bat 'powershell.exe -ExecutionPolicy ByPass -File '+env.WORKSPACE+"/ug_spellchecker/build.ps1 -Script "+env.WORKSPACE+"/ug_spellchecker/build.cake -Target build -Platform \""+platform+"\" -Targetbranch "+env.githubTargetBranch+" -Branch "+'"'+env.githubSourceBranch+'"' - } - - def files = findFiles(glob: '**/cireports/errorlogs/*.txt') - - if(files.size() > 0) - { - currentBuild.result = 'FAILURE' - } - - } - catch(Exception e) - { - currentBuild.result = 'FAILURE' - } -} + if (Content) { + writeFile file: env.WORKSPACE+"/cireports/content.txt", text: Content + } + else { + writeFile file: env.WORKSPACE+"/cireports/content.txt", text: "There are no filepaths found for this commit." + } + } + } + + //Checkout the ug_spellchecker from development Source + checkout([$class: 'GitSCM', branches: [[name: '*/development']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'ug_spellchecker']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: env.githubCredentialId, url: 'https://github.com/syncfusion-content/ug_spellchecker.git']]]) + } + + catch(Exception e) + { + currentBuild.result = 'FAILURE' + } + + if(currentBuild.result != 'FAILURE') + { + stage 'Build Source' + try + { + gitlabCommitStatus("Build") + { + bat 'powershell.exe -ExecutionPolicy ByPass -File '+env.WORKSPACE+"/ug_spellchecker/build.ps1 -Script "+env.WORKSPACE+"/ug_spellchecker/build.cake -Target build -Platform \""+platform+"\" -Targetbranch "+env.githubTargetBranch+" -Branch "+'"'+env.githubSourceBranch+'"' + } + + def files = findFiles(glob: '**/cireports/errorlogs/*.txt') - stage 'Delete Workspace' - - def files = findFiles(glob: '**/cireports/*.*') - - if(files.size() > 0) - { - archiveArtifacts artifacts: 'cireports/', excludes: null - } - step([$class: 'WsCleanup']) } - } + if(files.size() > 0) + { + currentBuild.result = 'FAILURE' + } + + } + catch(Exception e) + { + currentBuild.result = 'FAILURE' + } + } + + stage 'Delete Workspace' + + def files = findFiles(glob: '**/cireports/*.*') + + if(files.size() > 0) + { + archiveArtifacts artifacts: 'cireports/', excludes: null + } + step([$class: 'WsCleanup']) + } + } } diff --git a/chart-sdk/maui/Cartesian-Charts/AI-Powered-Data-Processing.md b/chart-sdk/maui/Cartesian-Charts/AI-Powered-Data-Processing.md index 88fd72eec..17cf2a67c 100644 --- a/chart-sdk/maui/Cartesian-Charts/AI-Powered-Data-Processing.md +++ b/chart-sdk/maui/Cartesian-Charts/AI-Powered-Data-Processing.md @@ -1,20 +1,20 @@ --- layout: post -title: AI-Powered Data Cleaning in .NET MAUI Cartesian Chart | Syncfusion -description: Learn here how to create a .NET MAUI Syncfusion® smart Cartesian Chart using Azure OpenAI to assist in data cleaning and preprocessing. +title: AI Data Cleaning in .NET MAUI Cartesian Chart | Syncfusion® +description: AI Powered Data Cleaning and Preprocessing in .NET MAUI Cartesian Chart automates data preparation, handles missing values, and improves data quality. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart AI data cleaning, maui chart data, .net maui chart data preprocessing, syncfusion maui chart AI preprocessing, .net maui chart data visualization, .net maui cartesian chart AI empty point preprocessing support. --- -# AI Powered data cleaning and preprocessing in .NET MAUI Chart. +# AI Data Cleaning and Preprocessing in .NET MAUI Cartesian Chart Raw datasets often contain missing values, outliers, or noise that can distort visualizations and analysis. This is common in web traffic data, which may have gaps or spikes. Before visualizing such data, it’s essential to clean it. -This guide shows how to use Azure OpenAI to clean and preprocessing e-commerce website traffic data, then visualize the results using [Syncfusion .NET MAUI Cartesian Chart](https://help.syncfusion.com/maui/cartesian-charts/getting-started). +This guide shows how to use Azure OpenAI to clean and preprocessing e-commerce website traffic data, then visualize the results using [Syncfusion .NET MAUI Cartesian Chart](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Integrating Azure OpenAI for cleaning and preprocessing the data diff --git a/chart-sdk/maui/Cartesian-Charts/AI-Powered-Stock-forecasting-in-Candle-Chart.md b/chart-sdk/maui/Cartesian-Charts/AI-Powered-Stock-forecasting-in-Candle-Chart.md index 67444c78b..3c5a25a61 100644 --- a/chart-sdk/maui/Cartesian-Charts/AI-Powered-Stock-forecasting-in-Candle-Chart.md +++ b/chart-sdk/maui/Cartesian-Charts/AI-Powered-Stock-forecasting-in-Candle-Chart.md @@ -1,7 +1,7 @@ --- layout: post -title: AI powered stock forecasting in .NET MAUI Cartesian Chart | Syncfusion -description: Learn here how to implement AI-powered smart stock data forecasting using .NET MAUI Syncfusion® Cartesian Chart Candle series. +title: AI Stock Forecasting in .NET MAUI Cartesian Chart | Syncfusion® +description: AI Powered Stock Forecasting in .NET MAUI Cartesian Chart predicts market trends using AI-driven analysis, helping visualize forecasted stock performance. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -10,9 +10,9 @@ keywords: .net maui chart AI forecasting, maui chart stock, .net maui chart data # AI Powered Stock Forecasting in .NET MAUI Cartesian Chart -This guide demonstrates how to build an AI-powered [.NET MAUI Cartesian Chart Candle series](https://help.syncfusion.com/maui/cartesian-charts/candle) that forecasts stock prices for the next 45 days, helping traders make informed decisions using Syncfusion controls and Azure OpenAI. +This guide demonstrates how to build an AI-powered [.NET MAUI Cartesian Chart Candle series](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/candle) that forecasts stock prices for the next 45 days, helping traders make informed decisions using Syncfusion controls and Azure OpenAI. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Integrating Azure OpenAI for Stock Forecasting @@ -123,7 +123,7 @@ public Task> GetAnswerFromGPT(string userPrompt, ### 3. Implement the Syncfusion .NET MAUI Cartesian Chart to display forecasted data. -The [Syncfusion .NET MAUI Cartesian Chart Candle series](https://help.syncfusion.com/maui/cartesian-charts/candle) allows you to display financial data. Define the data Model that holds the financial data (High, Low, Open, Close) and ViewModel that holds the collection of data for binding. +The [Syncfusion .NET MAUI Cartesian Chart Candle series](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/candle) allows you to display financial data. Define the data Model that holds the financial data (High, Low, Open, Close) and ViewModel that holds the collection of data for binding. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Add-custom-labels.md b/chart-sdk/maui/Cartesian-Charts/Add-custom-labels.md index cd469036c..4e81f1f17 100644 --- a/chart-sdk/maui/Cartesian-Charts/Add-custom-labels.md +++ b/chart-sdk/maui/Cartesian-Charts/Add-custom-labels.md @@ -1,14 +1,14 @@ --- layout: post -title: Add custom labels to the Cartesian chart axis | Syncfusion -description: Learn here all about how to add custom labels to the chart axis in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: How to Add Axis Labels in .NET MAUI Cartesian Chart | Syncfusion® +description: Add custom axis labels in Syncfusion® .NET MAUI Cartesian Chart control to display personalized axis text and improve chart readability and presentation. platform: chart-sdk control: SfCartesianChart documentation: ug Keywords: .net maui chart custom axis labels, .net maui chart axis label customization, sfCartesianchart custom axis labels in .net maui, .net maui chart axis label customization. --- -# Add custom labels to the chart axis in .NET MAUI Cartesian Chart +# How to Add Custom Axis Labels in .NET MAUI Cartesian Chart [ChartAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html) provides the [OnCreateLabels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_OnCreateLabels) override method, called whenever new labels are generated (e.g., during layout, data update, zoom, or pan). The following properties are available when adding custom labels. @@ -18,7 +18,7 @@ Keywords: .net maui chart custom axis labels, .net maui chart axis label customi * [VisibleMinimum](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_VisibleMinimum) - Gets the `double` value representing the minimum value of the visible axis range. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Annotation.md b/chart-sdk/maui/Cartesian-Charts/Annotation.md index 259c18008..abba6808d 100644 --- a/chart-sdk/maui/Cartesian-Charts/Annotation.md +++ b/chart-sdk/maui/Cartesian-Charts/Annotation.md @@ -1,7 +1,7 @@ --- layout: post -title: Annotations in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about annotation support and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Annotations in .NET MAUI Cartesian Chart | Syncfusion® +description: Annotations in .NET MAUI Cartesian Chart allow custom content to be displayed within the chart area, highlighting key data points and insights. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ keywords: .net maui cartesian chart annotations, .net maui annotations customiza * Shape annotation * View annotation -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. To learn how to add and customize annotations in .NET MAUI Cartesian Charts quickly, you can check the below video. diff --git a/chart-sdk/maui/Cartesian-Charts/Appearance.md b/chart-sdk/maui/Cartesian-Charts/Appearance.md index 1614bd19e..651ef1151 100644 --- a/chart-sdk/maui/Cartesian-Charts/Appearance.md +++ b/chart-sdk/maui/Cartesian-Charts/Appearance.md @@ -1,7 +1,7 @@ --- layout: post -title: Appearance in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about appearance customization in .NET MAUI Cartesian Chart (SfCartesianChart), its elements and more. +title: Appearance in .NET MAUI Cartesian Chart | Syncfusion® +description: Appearance in .NET MAUI Cartesian Chart allows customization of chart visuals using colors, palettes and styling options. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -11,7 +11,7 @@ keywords: .net maui cartesian chart appearance, .net maui chart appearance custo # Appearance in .NET MAUI Cartesian Chart The appearance of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) can be customized by using the predefined brushes, custom brushes and gradient, which allows to enrich the application. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Add a title diff --git a/chart-sdk/maui/Cartesian-Charts/Area.md b/chart-sdk/maui/Cartesian-Charts/Area.md index 707baaabf..776537e26 100644 --- a/chart-sdk/maui/Cartesian-Charts/Area.md +++ b/chart-sdk/maui/Cartesian-Charts/Area.md @@ -1,7 +1,7 @@ --- layout: post -title: Area Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the area chart types and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Area Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Area Chart in .NET MAUI Cartesian Chart visualizes data trends by filling the area beneath a line series, making comparisons and patterns easier to identify. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ The area chart is rendered by using a collection of line segments connected to f N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md b/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md index 20f8ee1a1..c094c1682 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md @@ -1,20 +1,20 @@ --- layout: post -title: Auto scrolling in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about auto scrolling and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Auto Scrolling in .NET MAUI Cartesian Chart | Syncfusion® +description: Auto Scrolling in .NET MAUI Cartesian Chart displays the latest data points while maintaining a fixed range for continuous data visualization. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart auto scrolling, .net maui chart scrolling customization, .net maui chart auto scroll feature, syncfusion maui chart auto scrolling, cartesian chart auto scroll maui, .net maui chart dynamic scrolling, enable auto scrolling .net maui chart. --- -# Auto scrolling in .NET MAUI Cartesian Chart +# Auto Scrolling in .NET MAUI Cartesian Chart Auto-scrolling in .NET MAUI Cartesian Chart ensures that a specified range of data is always visible, making it ideal for real-time data feeds and streaming dashboards. The [AutoScrollingDelta](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AutoScrollingDelta) property of the chart axis sets the number of data points to be always visible. As new data points are added, the visible range scrolls to keep them in view, and you can use the [AutoScrollingMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AutoScrollingMode) property to control the scroll direction. By adding [ChartZoomPanBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartZoomPanBehavior.html) to the chart, you can manually scroll to view previous data points. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Cartesian Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Cartesian Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md b/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md index fc5a2df75..459baffc2 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md @@ -1,18 +1,18 @@ --- layout: post -title: Axis labels in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about axis labels and its customization in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Axis Labels in .NET MAUI Cartesian Chart | Syncfusion® +description: Axis Labels in .NET MAUI Cartesian Chart display category and value information along chart axes, improving readability and data interpretation. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart axis labels, axis labels customization .net maui, syncfusion maui chart axis labels, cartesian chart axis labels maui, customize axis labels .net maui chart, .net maui chart labels per 100 pixels. --- -# Axis labels in .NET MAUI Cartesian Chart +# Axis Labels in .NET MAUI Cartesian Chart Axis labels display the units, measures, or category values of an axis to help users understand the data. They are generated based on the range and the values bound to [XBindingPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_XBindingPath) or [YBindingPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.XYDataSeries.html#Syncfusion_Maui_Charts_XYDataSeries_YBindingPath) properties of the series. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Cartesian Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Cartesian Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Positioning the labels diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md b/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md index c7134741f..9ed1367f5 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md @@ -1,18 +1,18 @@ --- layout: post -title: Axis line in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the chart axis line and its customization in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Axis Line in .NET MAUI Cartesian Chart | Syncfusion +description: Axis Line in .NET MAUI Cartesian Chart defines the visual representation of chart axes, helping organize data and improve chart readability. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart axis line, .net maui chart axis customization, .net maui chart axisline guide, maui chart axis line settings, syncfusion maui chart axis line, .net maui chart axis styling, customize axis line .net maui chart. --- -# Axis line in .NET MAUI Cartesian Chart +# Axis Line in .NET MAUI Cartesian Chart The axis line in .NET MAUI Cartesian Chart visually represents the axis itself in the chart area. You can customize its appearance, including stroke color, width, and dash patterns, using the [AxisLineStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AxisLineStyle) property. Additionally, you can control the spacing between the axis and the chart area using the [AxisLineOffset](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AxisLineOffset) property. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Cartesian Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Cartesian Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Customizing axis line style diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Gridlines.md b/chart-sdk/maui/Cartesian-Charts/Axis/Gridlines.md index eaf27c2ad..cbd80c84c 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Gridlines.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Gridlines.md @@ -1,7 +1,7 @@ --- layout: post -title: Axis grid lines in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the chart axis grid lines and its customization in syncfusion® .NET MAUI Cartesian Chart(SfCartesianChart). +title: Grid Lines in .NET MAUI Cartesian Chart | Syncfusion® +description: Grid Lines in .NET MAUI Cartesian Chart provide visual references across the plot area, helping improve data readability and value comparison. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui cartesian chart grid lines, .net maui cartesian chart grid c By default, major gridlines are automatically added to the [ChartAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html) in its defined intervals. The visibility of the major gridlines can be controlled using the [ShowMajorGridLines](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_ShowMajorGridLines) property. The default value of [ShowMajorGridLines](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_ShowMajorGridLines) is `true`. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/MultiLevelLabels.md b/chart-sdk/maui/Cartesian-Charts/Axis/MultiLevelLabels.md index cbcc2b4e9..535713735 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/MultiLevelLabels.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/MultiLevelLabels.md @@ -1,7 +1,7 @@ --- layout: post -title: Multi-Level Labels in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about multi-level labels and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control and more. +title: Multi-Level Labels in .NET MAUI Cartesian Chart | Syncfusion® +description: Multi-Level Labels in .NET MAUI Cartesian Chart organize axis labels into hierarchical levels, improving readability and displaying grouped data effectively. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -10,7 +10,7 @@ keywords: .net maui cartesian charts, .net maui multi-level labels, cartesian ch # Multi-Level Labels in .NET MAUI Cartesian Chart -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. Multi-level labels allow you to display multiple hierarchy levels of labels on the chart axes. This feature is particularly useful for categorizing data at different levels of detail, providing better organization and readability of large datasets. Multi-level labels can be applied to any [ChartAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html) in the Cartesian chart. diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Overview.md b/chart-sdk/maui/Cartesian-Charts/Axis/Overview.md index fffd31f04..f1d92d13f 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Overview.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Overview.md @@ -1,7 +1,7 @@ --- layout: post -title: About Axis in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about chart axis and its keys features of Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Axis in .NET MAUI Cartesian Chart | Syncfusion® +description: Axis in .NET MAUI Cartesian Chart defines the chart coordinate system with customizable labels, lines, ticks, and titles for data visualization. platform: chart-sdk control: SfCartesianChart documentation: ug diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Padding.md b/chart-sdk/maui/Cartesian-Charts/Axis/Padding.md index 1fa17ef02..77d947454 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Padding.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Padding.md @@ -1,7 +1,7 @@ --- layout: post -title: Axis padding in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about how to set padding for chart axis in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Axis Padding in .NET MAUI Cartesian Chart | Syncfusion® +description: Axis Padding in .NET MAUI Cartesian Chart controls the space around axis ranges, improving data visibility and preventing points from rendering at chart edges. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui cartesian chart axis padding, .net maui cartesian chart axis The [PlotOffsetStart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_PlotOffsetStart) property, of type `double` and measured in pixels (px), is used to provide padding to the axis at the start position. The default value is `0`. The following code sample demonstrates the padding applied to the start position for both the X and Y axes. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Range-padding.md b/chart-sdk/maui/Cartesian-Charts/Axis/Range-padding.md index fd647addf..943707e9d 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Range-padding.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Range-padding.md @@ -1,7 +1,7 @@ --- layout: post -title: Axis range padding in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about axis range padding and its types features of Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Axis Range Padding in .NET MAUI Cartesian Chart | Syncfusion® +description: Axis Range Padding in .NET MAUI Cartesian Chart adjusts axis boundaries to improve data presentation and prevent points from appearing at chart edges. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui cartesian chart axis range padding, .net maui cartesian char Range padding is used to set the minimum and maximum extremes of the chart axis range by using the [RangePadding](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalAxis.html#Syncfusion_Maui_Charts_NumericalAxis_RangePadding) property. The [RangePadding](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAxisBase.html#Syncfusion_Maui_Charts_RangeAxisBase_RangePadding) property, available on axes derived from [RangeAxisBase](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAxisBase.html) such as [NumericalAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalAxis.html), [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html), and [LogarithmicAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.LogarithmicAxis.html), can be used to add padding to the range of the chart axis. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Numerical Range Padding diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Ticklines.md b/chart-sdk/maui/Cartesian-Charts/Axis/Ticklines.md index 2a7a73bb2..ad717a8b2 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Ticklines.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Ticklines.md @@ -1,7 +1,7 @@ --- layout: post -title: Axis tick lines in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about chart axis tick line and its customization in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Tick Lines in .NET MAUI Cartesian Chart | Syncfusion® +description: Tick Lines in .NET MAUI Cartesian Chart indicate axis intervals, helping users interpret scale values accurately and improve chart readability. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ Tick lines are the small lines which are drawn on the axis line representing the Minor tick lines can also be added to the axis by defining the [MinorTicksPerInterval](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAxisBase.html#Syncfusion_Maui_Charts_RangeAxisBase_MinorTicksPerInterval) property, of type `int` with a default value of `0`. This property is available on axes derived from [RangeAxisBase](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAxisBase.html) and will add the minor tick lines to every interval based on the value. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> For the category axis, minor tick lines are not applicable because it is rendered based on index positions. diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Title.md b/chart-sdk/maui/Cartesian-Charts/Axis/Title.md index b0b27c8d4..573429466 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Title.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Title.md @@ -1,7 +1,7 @@ --- layout: post -title: Title for axis in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains the chart axis title, title style, and its customization in .NET MAUI Cartesian Chart (SfCartesianChart). +title: Axis Title in .NET MAUI Cartesian Chart | Syncfusion® +description: Axis Title in .NET MAUI Cartesian Chart provides descriptive text for chart axes, helping clarify data context and improve chart understanding. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui cartesian charts, .net maui axis title, cartesian chart axis The [Title](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_Title) property is used to set the title for the chart axis. The axis does not display a title by default. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Types.md b/chart-sdk/maui/Cartesian-Charts/Axis/Types.md index 6b2dc5867..ca84d67b5 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Types.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Types.md @@ -1,7 +1,7 @@ --- layout: post -title: Axis types in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about axis types and their features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control and more. +title: Types of Axis in .NET MAUI Cartesian Chart | Syncfusion® +description: Types of Axis in .NET MAUI Cartesian Chart support category, numerical, logarithmic, and date-time data for flexible data visualization. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -18,7 +18,7 @@ Cartesian chart supports the following types of chart axis: * [DateTimeCategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeCategoryAxis.html) * [LogarithmicAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.LogarithmicAxis.html) -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Numerical Axis diff --git a/chart-sdk/maui/Cartesian-Charts/BarChart.md b/chart-sdk/maui/Cartesian-Charts/BarChart.md index d7dcf4595..993783476 100644 --- a/chart-sdk/maui/Cartesian-Charts/BarChart.md +++ b/chart-sdk/maui/Cartesian-Charts/BarChart.md @@ -1,7 +1,7 @@ --- layout: post -title: Bar Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about bar chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Bar Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Bar Chart in .NET MAUI Cartesian Chart displays data using horizontal bars, making it easy to compare values across different categories. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -10,13 +10,13 @@ keywords: .net maui bar chart, maui bar chart, .net maui chart bar type, bar cha # Bar Chart in .NET MAUI Cartesian Chart -A bar chart uses bars to represent data points and compare values across different categories. To render a bar chart, initialize the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) and set the [IsTransposed](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_IsTransposedProperty) property to `true` to switch the chart's X and Y axes. Then, create a [ColumnSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ColumnSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). For more information on column chart setup, see the [Column Chart](https://help.syncfusion.com/maui/cartesian-charts/column) documentation. +A bar chart uses bars to represent data points and compare values across different categories. To render a bar chart, initialize the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) and set the [IsTransposed](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_IsTransposedProperty) property to `true` to switch the chart's X and Y axes. Then, create a [ColumnSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ColumnSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). For more information on column chart setup, see the [Column Chart](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/column) documentation. N> By default, the [IsTransposed](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_IsTransposedProperty) property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) is `false`. N> The Cartesian chart has `Series` as its default content. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/BoxAndWhisker.md b/chart-sdk/maui/Cartesian-Charts/BoxAndWhisker.md index e8f84d877..ecf12108a 100644 --- a/chart-sdk/maui/Cartesian-Charts/BoxAndWhisker.md +++ b/chart-sdk/maui/Cartesian-Charts/BoxAndWhisker.md @@ -1,7 +1,7 @@ --- layout: post -title: Box and whisker Chart in .NET MAUI Cartesian Chart control |Syncfusion -description: Learn here all about box and whisker chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Box and Whisker Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Box and Whisker Chart in .NET MAUI Cartesian Chart visualizes data distribution, quartiles, median, and outliers for effective statistical analysis. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui box and whisker chart, maui box and whisker chart, box and w A box plot chart is used to show the distribution of data within a population. To render a box plot chart, create an instance of [BoxAndWhiskerSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.BoxAndWhiskerSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. Box plots are great for comparing the distribution of multiple datasets side by side. By comparing the median, quartiles, and range of the boxes, you can quickly identify differences in the center, spread, and skewness of the distributions. The following code illustrates how to define the series in chart. diff --git a/chart-sdk/maui/Cartesian-Charts/Bubble.md b/chart-sdk/maui/Cartesian-Charts/Bubble.md index 3fc502e23..4e5e553f5 100644 --- a/chart-sdk/maui/Cartesian-Charts/Bubble.md +++ b/chart-sdk/maui/Cartesian-Charts/Bubble.md @@ -1,7 +1,7 @@ --- layout: post -title: Bubble chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the bubble chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Bubble Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Bubble Chart in .NET MAUI Cartesian Chart visualizes data using bubbles of varying sizes, enabling comparison of three dimensions within a single chart. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,11 +12,11 @@ keywords: .net maui bubble chart, maui bubble chart, bubble chart customization ## Bubble Chart -The bubble chart is represented by closely packed circles, whose areas are proportional to the data values they represent. The bubble chart is similar to a [scatter plot](https://help.syncfusion.com/maui/cartesian-charts/scatter), but with the additional dimension of bubble size to represent a third variable. +The bubble chart is represented by closely packed circles, whose areas are proportional to the data values they represent. The bubble chart is similar to a [scatter plot](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/scatter), but with the additional dimension of bubble size to represent a third variable. To render a bubble chart, create an instance of [BubbleSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.BubbleSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). The data model must include `XValue`, `YValue`, and `Size` properties; the bubble size is proportional to the value bound via the [SizeValuePath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.BubbleSeries.html#Syncfusion_Maui_Charts_BubbleSeries_SizeValuePath) property. You can constrain the bubble size using the [MinimumRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.BubbleSeries.html#Syncfusion_Maui_Charts_BubbleSeries_MinimumRadius) (default `3`) and [MaximumRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.BubbleSeries.html#Syncfusion_Maui_Charts_BubbleSeries_MaximumRadius) (default `10`) properties. The following code shows how to configure these properties. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Candle.md b/chart-sdk/maui/Cartesian-Charts/Candle.md index 699622a7c..2f1b5a489 100644 --- a/chart-sdk/maui/Cartesian-Charts/Candle.md +++ b/chart-sdk/maui/Cartesian-Charts/Candle.md @@ -1,7 +1,7 @@ --- layout: post -title: Candle Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the candle chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Candle Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Candle Chart in .NET MAUI Cartesian Chart visualizes open, high, low, and close values, making it ideal for financial and stock market analysis. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui candle chart, candle chart customization .net maui, syncfusi Candle charts are a type of financial chart used to represent the price movement of an asset over time. The chart is made up of a series of rectangular bars, called candlesticks, that represent a specific time, typically one day. To render a candle chart, create an instance of [CandleSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CandleSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Column.md b/chart-sdk/maui/Cartesian-Charts/Column.md index f1ef636ce..94160af1b 100644 --- a/chart-sdk/maui/Cartesian-Charts/Column.md +++ b/chart-sdk/maui/Cartesian-Charts/Column.md @@ -1,7 +1,7 @@ --- layout: post -title: Column Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the column chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Column Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Column Chart in .NET MAUI Cartesian Chart displays data using vertical columns, making it easy to compare values across different categories and groups. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui column chart, column chart customization .net maui, syncfusi A column chart is used to plot discrete rectangles for the given data point values. To render a column chart, create an instance of [ColumnSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ColumnSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Crosshair.md b/chart-sdk/maui/Cartesian-Charts/Crosshair.md index 220287456..0ef2ae324 100644 --- a/chart-sdk/maui/Cartesian-Charts/Crosshair.md +++ b/chart-sdk/maui/Cartesian-Charts/Crosshair.md @@ -1,7 +1,7 @@ --- layout: post -title: Crosshair in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains how to enable the crosshair and its customization in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Crosshair in .NET MAUI Cartesian Chart | Syncfusion® +description: Crosshair in .NET MAUI Cartesian Chart displays intersecting lines and data values at specific points, enabling precise data analysis and comparison. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ Crosshair allows you to view exact values on the chart by showing vertical and h To enable the crosshair in the chart, create an instance of the [ChartCrosshairBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartCrosshairBehavior.html) and set it to the [CrosshairBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_CrosshairBehavior) property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Customize-each-chart-axis-label.md b/chart-sdk/maui/Cartesian-Charts/Customize-each-chart-axis-label.md index 51b646eaa..ace2e46c4 100644 --- a/chart-sdk/maui/Cartesian-Charts/Customize-each-chart-axis-label.md +++ b/chart-sdk/maui/Cartesian-Charts/Customize-each-chart-axis-label.md @@ -1,18 +1,18 @@ --- layout: post -title: Customize each chart axis label using the callback event | Syncfusion -description: Learn how to customize each chart axis label using the callback event in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: How to Use Callback Event for Axis Labels in MAUI Chart | Syncfusion® +description: Customize each chart axis label using the callback event in Syncfusion® .NET MAUI Cartesian Chart control to display formatted labels and improve readability. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart customize axis label callback, .net maui chart axis label callback event, sfcartesianchart axis label callback customization in .net maui, sfcartesianchart custom axis label event handling in .net maui. --- -# Customize each chart axis label using the callback event +# How to Use Callback Event for Axis Labels in MAUI Chart The [LabelCreated](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_LabelCreated) event is triggered upon label creation in a chart axis, providing the option to customize chart axis labels. The event handler receives a [ChartAxisLabelEventArgs](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxisLabelEventArgs.html) object, which exposes the [Label](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxisLabelEventArgs.html#Syncfusion_Maui_Charts_ChartAxisLabelEventArgs_Label) property that can be modified to change the displayed label text. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> This example uses a [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html), which is required for the label parsing logic to work correctly. diff --git a/chart-sdk/maui/Cartesian-Charts/DataLabels.md b/chart-sdk/maui/Cartesian-Charts/DataLabels.md index 52e68b37d..28ff6ae4e 100644 --- a/chart-sdk/maui/Cartesian-Charts/DataLabels.md +++ b/chart-sdk/maui/Cartesian-Charts/DataLabels.md @@ -1,14 +1,14 @@ --- layout: post -title: Data labels in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains how to configure the data labels and their features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart). +title: Data Labels in .NET MAUI Cartesian Chart | Syncfusion® +description: Data Labels in .NET MAUI Cartesian Chart display values directly on data points, improving readability and helping interpret chart data effectively. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart data label, maui chart data label, .net maui data label customization, syncfusion maui chart data label, cartesian data label maui, .net maui chart data label visualization, .net maui chart value label. --- -# Data labels in .NET MAUI Cartesian Chart +# Data Labels in .NET MAUI Cartesian Chart Data labels are used to display values related to a chart segment. Values from data point(x, y) or other custom properties from a data source can be displayed. @@ -24,7 +24,7 @@ To learn how to customize the data labels in .NET MAUI Cartesian Charts quickly, The [ShowDataLabels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_ShowDataLabels) property of the series is used to enable the data labels. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/EmptyPoints.md b/chart-sdk/maui/Cartesian-Charts/EmptyPoints.md index 6f30f5987..fb15a825d 100644 --- a/chart-sdk/maui/Cartesian-Charts/EmptyPoints.md +++ b/chart-sdk/maui/Cartesian-Charts/EmptyPoints.md @@ -1,20 +1,20 @@ --- layout: post -title: Empty points in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about empty points support and their features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Empty Points in .NET MAUI Cartesian Chart | Syncfusion® +description: Empty Points in .NET MAUI Cartesian Chart handle missing or null values using configurable modes, ensuring clear and meaningful data visualization. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart empty points, .net maui empty points customization, syncfusion maui chart empty points, maui chart empty points, .net maui chart empty points visualization, cartesian empty points maui, missing data handling --- -# Empty points in .NET MAUI Cartesian Chart +# Empty Points in .NET MAUI Cartesian Chart Empty points are used to indicate missing or null data in a series. These empty points can occur when data is unavailable, improperly formatted, or explicitly set as null or `double.NaN`. The chart provides options to handle and customize these empty points to enhance visualization and maintain the integrity of data representation. [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) provides support for empty points, allowing users to handle missing data effectively. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. The data collection that is passed to the chart can have `NaN` or null values that are considered as empty points. The empty points can be defined as in the following code example. diff --git a/chart-sdk/maui/Cartesian-Charts/Errorbar-Chart.md b/chart-sdk/maui/Cartesian-Charts/Errorbar-Chart.md index 58ae58854..e02284039 100644 --- a/chart-sdk/maui/Cartesian-Charts/Errorbar-Chart.md +++ b/chart-sdk/maui/Cartesian-Charts/Errorbar-Chart.md @@ -1,7 +1,7 @@ --- layout: post -title: Error Bar Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about error bar chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Error Bar in .NET MAUI Cartesian Chart | Syncfusion® +description: Error Bar in .NET MAUI Cartesian Chart displays data variability and uncertainty, helping visualize statistical deviations and measurement accuracy. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ keywords: .net maui error bar chart, error bar chart customization .net maui, sy N> The Error Bar is not an individual chart; it associates with a main chart. Here, we use `Scatter Series Chart` as the main chart with the Error Bar Series chart support. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. The following code examples illustrate how to create an error bar series: diff --git a/chart-sdk/maui/Cartesian-Charts/Exporting.md b/chart-sdk/maui/Cartesian-Charts/Exporting.md index 0237d472e..450827c04 100644 --- a/chart-sdk/maui/Cartesian-Charts/Exporting.md +++ b/chart-sdk/maui/Cartesian-Charts/Exporting.md @@ -1,7 +1,7 @@ --- layout: post -title: Exporting in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here how to export the chart view as an image and stream in the Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Exporting in .NET MAUI Cartesian Chart | Syncfusion® +description: Exporting in .NET MAUI Cartesian Chart enables charts to be saved as image files for sharing, reporting, and presentation purposes. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui chart exporting, maui chart exporting, .net maui chart expor You can export the chart view as an image in the desired file format using the [SaveAsImage](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_SaveAsImage_System_String_) method of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). The supported image formats are **JPEG and PNG**. By default, if you don't mention any image format with the filename, the chart view will be exported as an image in the PNG format. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The chart view can be exported as an image only when the chart view is added to the visual tree. diff --git a/chart-sdk/maui/Cartesian-Charts/FastScatter.md b/chart-sdk/maui/Cartesian-Charts/FastScatter.md index 5086f0478..aff1bef38 100644 --- a/chart-sdk/maui/Cartesian-Charts/FastScatter.md +++ b/chart-sdk/maui/Cartesian-Charts/FastScatter.md @@ -1,7 +1,7 @@ --- layout: post -title: Fast Scatter Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the fast scatter chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Fast Scatter Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Fast Scatter Chart in .NET MAUI Cartesian Chart renders large data sets efficiently, enabling high-performance visualization for scatter plot analysis. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui fast scatter chart, .net maui performance scatter chart, fas The [FastScatterSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FastScatterSeries.html) is a specialized scatter series designed to efficiently render a large number of data points. It is optimized for performance when compared to the regular scatter series, making it suitable for large datasets. To render a fast scatter chart, create an instance of [FastScatterSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FastScatterSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Fastline.md b/chart-sdk/maui/Cartesian-Charts/Fastline.md index c234c781a..b94588d9b 100644 --- a/chart-sdk/maui/Cartesian-Charts/Fastline.md +++ b/chart-sdk/maui/Cartesian-Charts/Fastline.md @@ -1,7 +1,7 @@ --- layout: post -title: Fast Line Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the fast line chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Fast Line Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Fast Line Chart in .NET MAUI Cartesian Chart renders large data sets efficiently, delivering high-performance visualization for real-time and continuous data. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,9 +12,9 @@ keywords: .net maui fast line chart, .net maui performance line chart, fast line ## Fast Line Chart -The [FastLineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FastLineSeries.html) is a special kind of line series that can render a collection with a large number of data points. It is optimized for performance when compared to the regular [LineSeries](https://help.syncfusion.com/maui/cartesian-charts/line), making it suitable for large datasets. To render a fast line chart, create an instance of [FastLineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FastLineSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). +The [FastLineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FastLineSeries.html) is a special kind of line series that can render a collection with a large number of data points. It is optimized for performance when compared to the regular [LineSeries](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/line), making it suitable for large datasets. To render a fast line chart, create an instance of [FastLineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FastLineSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Get-the-data-point-collection-based-on-region.md b/chart-sdk/maui/Cartesian-Charts/Get-the-data-point-collection-based-on-region.md index 29c832540..7245b578f 100644 --- a/chart-sdk/maui/Cartesian-Charts/Get-the-data-point-collection-based-on-region.md +++ b/chart-sdk/maui/Cartesian-Charts/Get-the-data-point-collection-based-on-region.md @@ -1,21 +1,21 @@ --- layout: post -title: Get the data point collection based on region in .NET MAUI Cartesian Chart | Syncfusion -description: Get the data points that fall inside a given rectangular area or within specified X and Y coordinate ranges in SfCartesianChart. +title: How to Get Region Data Points in .NET MAUI Chart | Syncfusion® +description: Get region data points in Syncfusion® .NET MAUI Cartesian Chart control to identify and access chart data points within a specific region. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart data point collection, get data points by region, sfCartesianChart get data points rectangle, .net maui chart point collection by axis range --- -# Get the data point collection based on region +# How to Get Region Data Points in .NET MAUI Cartesian Chart [CartesianSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CartesianSeries.html) provides the following methods to get a collection of data under a particular region. * [`GetDataPoints(Rect rectangle)`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CartesianSeries.html#Syncfusion_Maui_Charts_CartesianSeries_GetDataPoints_Microsoft_Maui_Graphics_Rect_) - Gets the collection of data that falls inside the given rectangle region. * [`GetDataPoints(double startX, double endX, double startY, double endY)`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CartesianSeries.html#Syncfusion_Maui_Charts_CartesianSeries_GetDataPoints_System_Double_System_Double_System_Double_System_Double_) - Gets the collection of data from the given axis visible range. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} @@ -35,5 +35,5 @@ N> You can get the visible plotting region of the series in the chart using the ## See also -* [How to highlight selected data points by using GetDataPoints method in .NET MAUI Cartesian Charts](https://support.syncfusion.com/kb/article/16174/how-to-highlight-selected-data-points-by-using-getdatapoints-method-in-net-maui-cartesian-charts) -* [Transform axis value to pixel value and vice-versa](https://help.syncfusion.com/maui/cartesian-charts/transform-axis-value-to-pixel-value-and-vice-versa) \ No newline at end of file +* [How to highlight selected data points by using GetDataPoints method in .NET MAUI Cartesian Charts](https://support.syncfusion.com/kb/article/16174/how-to-highlight-selected-data-points-in-net-maui-cartesian-charts) +* [Transform axis value to pixel value and vice-versa](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/transform-axis-value-to-pixel-value-and-vice-versa) diff --git a/chart-sdk/maui/Cartesian-Charts/Get-the-touch-position-in-chart.md b/chart-sdk/maui/Cartesian-Charts/Get-the-touch-position-in-chart.md index d529cecb2..f2283dbd7 100644 --- a/chart-sdk/maui/Cartesian-Charts/Get-the-touch-position-in-chart.md +++ b/chart-sdk/maui/Cartesian-Charts/Get-the-touch-position-in-chart.md @@ -1,18 +1,18 @@ --- layout: post -title: Get the touch position in Syncfusion SfCartesianChart -description: Learn here all about getting the touch position in SfCartesianChart in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: How to Get Touch Position in .NET MAUI Cartesian Chart| Syncfusion® +description: Get touch position in Syncfusion® .NET MAUI Cartesian Chart control to identify interaction coordinates and handle touch-based chart actions. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui cartesian chart touch position, maui cartesian chart touch position, .net maui cartesian chart touch event, sfcartesianchart touch interaction in .net maui, .net maui cartesian chart touch gesture, .net maui cartesian chart touch behavior --- -# Get the touch position in .NET MAUI Cartesian Chart +# How to Get Touch Position in .NET MAUI Cartesian Chart [ChartInteractiveBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartInteractiveBehavior.html) provides the following override methods to get the x and y positions when touching the [`SfCartesianChart`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. * [`OnTouchUp`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBehavior.html#Syncfusion_Maui_Charts_ChartBehavior_OnTouchUp_Syncfusion_Maui_Charts_ChartBase_System_Single_System_Single_) - Called when a user lifts their finger or releases their touch input from the Chart area. * [`OnTouchMove`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBehavior.html#Syncfusion_Maui_Charts_ChartBehavior_OnTouchMove_Syncfusion_Maui_Charts_ChartBase_System_Single_System_Single_) - Called when a user's finger or touch input device is in contact with the Chart area and moves across its surface. diff --git a/chart-sdk/maui/Cartesian-Charts/Getting-Started.md b/chart-sdk/maui/Cartesian-Charts/Getting-Started.md index 139fe8e0f..cb3ed0b29 100644 --- a/chart-sdk/maui/Cartesian-Charts/Getting-Started.md +++ b/chart-sdk/maui/Cartesian-Charts/Getting-Started.md @@ -1,14 +1,14 @@ --- layout: post -title: Getting started with .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains how to get started with the Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Getting Started with .NET MAUI Cartesian Chart | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Cartesian Chart control. Explore setup, chart types, customization, and data visualization features. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui cartesian chart, .net maui charting, cartesian chart maui, syncfusion cartesian chart maui, maui chart control, .net maui data visualization, cartesian chart example maui. --- -# Getting started with .NET MAUI Cartesian Chart +# Getting Started with .NET MAUI Cartesian Chart This section explains how to populate the Cartesian chart with data, a title, data labels, a legend, and tooltips, as well as the essential aspects for getting started with the chart. diff --git a/chart-sdk/maui/Cartesian-Charts/Histogram.md b/chart-sdk/maui/Cartesian-Charts/Histogram.md index b8ede9b47..c3eb4ff79 100644 --- a/chart-sdk/maui/Cartesian-Charts/Histogram.md +++ b/chart-sdk/maui/Cartesian-Charts/Histogram.md @@ -1,7 +1,7 @@ --- layout: post -title: Histogram Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the Histogram chart and its type in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Histogram Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Histogram Chart in .NET MAUI Cartesian Chart displays data distribution across value ranges, helping analyze frequency patterns and data variation. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui histogram chart, histogram chart customization .net maui, sy [Histogram chart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.HistogramSeries.html) is a graphical representation that organizes a group of data points into user-specified ranges. It is similar in appearance to a column chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. Customize histogram intervals using the [HistogramInterval](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.HistogramSeries.html#Syncfusion_Maui_Charts_HistogramSeries_HistogramInterval) property and normal distribution curve can be collapsed using the [ShowNormalDistributionCurve](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.HistogramSeries.html#Syncfusion_Maui_Charts_HistogramSeries_ShowNormalDistributionCurve) property. diff --git a/chart-sdk/maui/Cartesian-Charts/Legend.md b/chart-sdk/maui/Cartesian-Charts/Legend.md index 59eec5fbf..084a028a6 100644 --- a/chart-sdk/maui/Cartesian-Charts/Legend.md +++ b/chart-sdk/maui/Cartesian-Charts/Legend.md @@ -1,7 +1,7 @@ --- layout: post -title: Legend in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains how to initialize the legend and customize its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Legend in .NET MAUI Cartesian Chart | Syncfusion® +description: Legend in .NET MAUI Cartesian Chart displays series information with customizable styles, helping users identify and interpret chart data effectively. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui cartesian chart, chart legend, legend-wrap, legend view, leg The [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_Legend) provides a list of series or data points, helping to identify the corresponding data series in the chart. Here's a detailed guide on how to define and customize the legend in the chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. To learn how to add and customize the legend in .NET MAUI Cartesian Charts quickly, you can check the video below. diff --git a/chart-sdk/maui/Cartesian-Charts/Line.md b/chart-sdk/maui/Cartesian-Charts/Line.md index 1a70cc202..0b429f790 100644 --- a/chart-sdk/maui/Cartesian-Charts/Line.md +++ b/chart-sdk/maui/Cartesian-Charts/Line.md @@ -1,7 +1,7 @@ --- layout: post -title: Line Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the line chart and its type in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Line Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Line Chart in .NET MAUI Cartesian Chart connects data points with continuous lines, making it easy to visualize trends, patterns, and changes over time. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui line chart, maui line chart, .net maui chart line type, line A line chart is used to represent the data trends at equal intervals by connecting points on a plot with straight lines. To render a line chart, create an instance of [LineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.LineSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Liquid-Glass-Effect.md b/chart-sdk/maui/Cartesian-Charts/Liquid-Glass-Effect.md index cf5c97172..9bccef64d 100644 --- a/chart-sdk/maui/Cartesian-Charts/Liquid-Glass-Effect.md +++ b/chart-sdk/maui/Cartesian-Charts/Liquid-Glass-Effect.md @@ -1,7 +1,7 @@ --- layout: post -title: Liquid Glass Effect in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn how to enable and customize the Liquid Glass visual effect in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) for stunning UI. +title: Liquid Glass Effect in .NET MAUI Cartesian Chart | Syncfusion® +description: Liquid Glass Effect in .NET MAUI Cartesian Chart applies a sleek glass-like visual style to chart elements, enhancing chart appearance and visual appeal. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -13,7 +13,7 @@ keywords: .net maui chart, cupertino theme, glass effect, maui cupertino chart, The Liquid Glass Effect is a modern design style that provides a sleek, minimalist appearance with clean lines, subtle visual effects, and elegant styling. It features smooth rounded corners and sophisticated visual treatments that create a polished, professional look for your charts. N> **Prerequisite:** -- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. - To use **SfGlassEffectView**, ensure that the Syncfusion.Maui.Core package is installed and import the Syncfusion.Maui.Core namespace. N> The liquid glass effect is supported only on `.NET 10` and on `iOS` and `macOS` versions 26 or later. diff --git a/chart-sdk/maui/Cartesian-Charts/Localization.md b/chart-sdk/maui/Cartesian-Charts/Localization.md index 7bc0e86c2..10b3a78fe 100644 --- a/chart-sdk/maui/Cartesian-Charts/Localization.md +++ b/chart-sdk/maui/Cartesian-Charts/Localization.md @@ -1,7 +1,7 @@ --- layout: post -title: Localization in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about Localization support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control and more. +title: Localization in .NET MAUI Cartesian Chart | Syncfusion® +description: Localization in .NET MAUI Cartesian Chart supports culture-specific formatting for tooltips and trackball labels, improving regional data presentation. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui chart localization, sfCartesianchart localization in .net ma Localization is the process of translating the application resources into different languages for the specific cultures. The `SfCartesianChart` can be localized by adding `resource` file. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Setting CurrentUICulture to the application diff --git a/chart-sdk/maui/Cartesian-Charts/OHLC.md b/chart-sdk/maui/Cartesian-Charts/OHLC.md index 51bd27977..29a9b215b 100644 --- a/chart-sdk/maui/Cartesian-Charts/OHLC.md +++ b/chart-sdk/maui/Cartesian-Charts/OHLC.md @@ -1,7 +1,7 @@ --- layout: post -title: OHLC Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the OHLC chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: OHLC Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: OHLC Chart in .NET MAUI Cartesian Chart visualizes open, high, low, and close values, making it suitable for financial data and market trend analysis. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui ohlc chart, .net maui chart ohlc type, ohlc chart customizat OHLC (Open-High-Low-Close) charts are a type of financial chart used to represent the price movement of an asset over a specific period. OHLC charts display four price values: the opening price, the high price, the low price, and the closing price for each period. To render an OHLC chart, create an instance of [HiLoOpenCloseSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.HiLoOpenCloseSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Overview.md b/chart-sdk/maui/Cartesian-Charts/Overview.md index 7f4ef1c2c..07b6ea408 100644 --- a/chart-sdk/maui/Cartesian-Charts/Overview.md +++ b/chart-sdk/maui/Cartesian-Charts/Overview.md @@ -1,14 +1,14 @@ --- layout: post -title: About .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about introduction of Syncfusion® .NET MAUI Chart (SfCartesianChart) control with key features and more. +title: About Syncfusion® .NET MAUI Cartesian Chart Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Cartesian Chart control, including chart types, axes, interactivity, and visualization features. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui sfCartesianChart overview, introduction to sfCartesianChart in .net maui, exploring sfCartesianChart in .net maui. --- -# .NET MAUI Cartesian Chart Overview +# About Syncfusion® .NET MAUI Cartesian Chart Control The Syncfusion® [.NET MAUI Cartesian chart](https://www.syncfusion.com/maui-controls/maui-cartesian-charts) provides a perfect way to visualize data with a high level of user involvement that focuses on development, productivity, and simplicity of use. Chart also provides a wide variety of charting features that can be used to visualize large quantities of data, as well as flexibility in data binding and user customization. @@ -77,7 +77,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Cartesian Charts +Cartesian Charts full-support not-applicable full-support @@ -88,17 +88,17 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for proportional data visualization using pie, doughnut, and radial bar charts. -- [Funnel Charts](https://help.syncfusion.com/maui/funnel-charts/overview) for visualizing stages in a process or pipeline. -- [Pyramid Charts](https://help.syncfusion.com/maui/pyramid-charts/overview) for hierarchical or comparative data representation. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for proportional data visualization using pie, doughnut, and radial bar charts. +- [Funnel Charts](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/overview) for visualizing stages in a process or pipeline. +- [Pyramid Charts](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/overview) for hierarchical or comparative data representation. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started) shows how to begin using the Cartesian chart control step by step. -- [Customization and Styling](https://help.syncfusion.com/maui/cartesian-charts/appearance) shows how to configure chart appearance, axes, gridlines, labels, legends, and themes. -- [Labels](https://help.syncfusion.com/maui/cartesian-charts/datalabels) display values directly on data points. -- [Zooming & Panning](https://help.syncfusion.com/maui/cartesian-charts/zooming-and-panning) provides interactive navigation to focus on specific ranges and move across large datasets smoothly. -- [Annotation](https://help.syncfusion.com/maui/cartesian-charts/annotation) adds custom text, shapes, or markers to highlight important areas or notes within the chart. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started) shows how to begin using the Cartesian chart control step by step. +- [Customization and Styling](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/appearance) shows how to configure chart appearance, axes, gridlines, labels, legends, and themes. +- [Labels](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/datalabels) display values directly on data points. +- [Zooming & Panning](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/zooming-and-panning) provides interactive navigation to focus on specific ranges and move across large datasets smoothly. +- [Annotation](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/annotation) adds custom text, shapes, or markers to highlight important areas or notes within the chart. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready-made UI examples. ## Resources diff --git a/chart-sdk/maui/Cartesian-Charts/Performance.md b/chart-sdk/maui/Cartesian-Charts/Performance.md index 4c59ac849..e9246f3b7 100644 --- a/chart-sdk/maui/Cartesian-Charts/Performance.md +++ b/chart-sdk/maui/Cartesian-Charts/Performance.md @@ -1,7 +1,7 @@ --- layout: post -title: Performance in .NET MAUI Cartesian Chart control | Syncfusion -description: Explore performance optimization techniques for .NET MAUI Cartesian Chart with fast series, real-time updates, and responsive data visualization. +title: Performance in .NET MAUI Cartesian Chart | Syncfusion® +description: Performance in .NET MAUI Cartesian Chart enables efficient rendering of large data sets, ensuring smooth interaction and responsive data visualization. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui chart performance, maui chart optimization, .net maui fast l The .NET MAUI Cartesian Chart provides performance optimization techniques to efficiently handle large datasets and dynamic data updates. Whether you are rendering thousands of data points or pushing real-time updates, the following strategies help you get the best rendering performance from `SfCartesianChart`. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Fast chart in .NET MAUI Cartesian Charts diff --git a/chart-sdk/maui/Cartesian-Charts/PlotBand.md b/chart-sdk/maui/Cartesian-Charts/PlotBand.md index 627401627..f6e8dc9cb 100644 --- a/chart-sdk/maui/Cartesian-Charts/PlotBand.md +++ b/chart-sdk/maui/Cartesian-Charts/PlotBand.md @@ -1,18 +1,18 @@ --- layout: post -title: Plot band in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about plot band and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control and more. +title: Plot Band in .NET MAUI Cartesian Chart | Syncfusion® +description: Plot Band in .NET MAUI Cartesian Chart highlights specific axis ranges with custom backgrounds, making important values and regions easier to identify. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui plot band, maui plot band, .net maui chart plot band type, plot band customization .net maui, syncfusion maui plot band, cartesian plot band maui, .net maui chart plot band visualization, .net maui shaded region chart, .net maui recurrence plot band. --- -# Plot band in .NET MAUI Cartesian Chart +# Plot Band in .NET MAUI Cartesian Chart A plot band, also known as a stripline, allows for shading specific regions or ranges in the plot area background at regular or custom intervals. It also provides options to customize the size of these bands. Text can be added to plot band and indicate the significance of each particular region. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. Plot bands are classified into [NumericalPlotBand](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html) and [DateTimePlotBand](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimePlotBand.html). Based on the axis, plot bands are drawn using these classifications. The following properties are used to configure the plot band: diff --git a/chart-sdk/maui/Cartesian-Charts/Range-Column.md b/chart-sdk/maui/Cartesian-Charts/Range-Column.md index 981613b3b..aa7384be1 100644 --- a/chart-sdk/maui/Cartesian-Charts/Range-Column.md +++ b/chart-sdk/maui/Cartesian-Charts/Range-Column.md @@ -1,7 +1,7 @@ --- layout: post -title: Range Column Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about range column and range bar chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Range Column Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Range Column Chart in .NET MAUI Cartesian Chart displays value ranges using vertical columns, helping compare minimum and maximum values effectively. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui range column chart, maui range column chart, range column ch Range Column Chart is used to visualize data points with columns, with the height of each column representing the difference between the lowest and highest values of the data point. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. To render a range column chart, create an instance of [RangeColumnSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeColumnSeries.html), and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). diff --git a/chart-sdk/maui/Cartesian-Charts/RangeArea.md b/chart-sdk/maui/Cartesian-Charts/RangeArea.md index db1843726..ff16a12ad 100644 --- a/chart-sdk/maui/Cartesian-Charts/RangeArea.md +++ b/chart-sdk/maui/Cartesian-Charts/RangeArea.md @@ -1,7 +1,7 @@ --- layout: post -title: Range Area Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about range area chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Range Area Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Range Area Chart in .NET MAUI Cartesian Chart displays value ranges as filled areas between minimum and maximum values, enabling effective range comparison. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ Range Area Chart is a type of data visualization useful for displaying the relat By displaying ranges of data, range area series can make it easier to compare multiple datasets at once. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. To render a range area chart, create an instance of the [RangeAreaSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAreaSeries.html), and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). diff --git a/chart-sdk/maui/Cartesian-Charts/Scatter.md b/chart-sdk/maui/Cartesian-Charts/Scatter.md index b79462063..921cb4d99 100644 --- a/chart-sdk/maui/Cartesian-Charts/Scatter.md +++ b/chart-sdk/maui/Cartesian-Charts/Scatter.md @@ -1,7 +1,7 @@ --- layout: post -title: Scatter Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the scatter chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Scatter Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Scatter Chart in .NET MAUI Cartesian Chart displays data as individual points, helping visualize relationships, distributions, and patterns between variables. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ The scatter chart is used to represent each data point as a dot or circle of uni To render a scatter chart, create an instance of [ScatterSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ScatterSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). The segment size can be defined using the [PointHeight](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ScatterSeries.html#Syncfusion_Maui_Charts_ScatterSeries_PointHeight) and [PointWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ScatterSeries.html#Syncfusion_Maui_Charts_ScatterSeries_PointWidth) properties. Both properties are of type `double`, and the default value is `10`. The [Type](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ScatterSeries.html#Syncfusion_Maui_Charts_ScatterSeries_Type) property, of type `ShapeType`, allows you to change the rendering shape of the scatter segment. The default value is `ShapeType.Circle`. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/Selection.md b/chart-sdk/maui/Cartesian-Charts/Selection.md index 7b9bfa04e..9444b261f 100644 --- a/chart-sdk/maui/Cartesian-Charts/Selection.md +++ b/chart-sdk/maui/Cartesian-Charts/Selection.md @@ -1,7 +1,7 @@ --- layout: post -title: Selection in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about selection and multi-selection support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Selection in .NET MAUI Cartesian Chart | Syncfusion® +description: Selection in .NET MAUI Cartesian Chart allows data points and series to be highlighted on interaction, improving data analysis and visual exploration. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui chart selection, maui chart selection, .net maui chart selec The [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) provides selection behavior support, which allows you to select or highlight a segment (data points) or a series in the chart using the [DataPointSelectionBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataPointSelectionBehavior.html) and [SeriesSelectionBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SeriesSelectionBehavior.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Enable data point selection diff --git a/chart-sdk/maui/Cartesian-Charts/SplineRangeArea.md b/chart-sdk/maui/Cartesian-Charts/SplineRangeArea.md index efbeef635..787162fbf 100644 --- a/chart-sdk/maui/Cartesian-Charts/SplineRangeArea.md +++ b/chart-sdk/maui/Cartesian-Charts/SplineRangeArea.md @@ -1,7 +1,7 @@ --- layout: post -title: Spline Range Area Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about Spline Range Area chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Spline Range Area Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Spline Range Area Chart in .NET MAUI Cartesian Chart displays value ranges with smooth curves between minimum and maximum values, improving trend visualization. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -18,7 +18,7 @@ To render a spline range area chart, create an instance of [SplineRangeAreaSerie Since the [SplineRangeAreaSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SplineRangeAreaSeries.html) requires two Y values for each point, your data should contain both the high and low values. These high and low values specify the maximum and minimum ranges of the point. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/StackedArea.md b/chart-sdk/maui/Cartesian-Charts/StackedArea.md index 228298de8..01ec8cacd 100644 --- a/chart-sdk/maui/Cartesian-Charts/StackedArea.md +++ b/chart-sdk/maui/Cartesian-Charts/StackedArea.md @@ -1,7 +1,7 @@ --- layout: post -title: Stacked Area Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about stacked area chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Stacked Area Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Stacked Area Chart in .NET MAUI Cartesian Chart displays cumulative data as stacked areas, helping visualize part-to-whole relationships and trends over time. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ The stacked area chart enables users to visually represent data points on top of To render a stacked area chart, create an instance of the [StackingAreaSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.StackingAreaSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has a [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/StackedArea100.md b/chart-sdk/maui/Cartesian-Charts/StackedArea100.md index 8ef421a7e..b31744f90 100644 --- a/chart-sdk/maui/Cartesian-Charts/StackedArea100.md +++ b/chart-sdk/maui/Cartesian-Charts/StackedArea100.md @@ -1,18 +1,18 @@ --- layout: post -title: StackedArea100 Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about StackedArea100 chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Stacked Area 100 Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Stacked Area 100 Chart in .NET MAUI Cartesian Chart displays percentage contributions as stacked areas, helping visualize proportional data across categories. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui stacked area 100 chart, maui stacked area 100 chart, stacked area 100 chart customization .net maui, syncfusion maui stacked area 100 chart, cartesian stacked area 100 chart maui, .net maui chart stacked area 100 visualization, .net maui 100% stacked area chart --- -# StackedArea100 Chart in .NET MAUI Cartesian Chart +# Stacked Area 100 Chart in .NET MAUI Cartesian Chart The stacked area 100% chart enables users to visually represent data points vertically, one above the other, to indicate the cumulative value of the data points at 100%. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## StackedArea100 Chart diff --git a/chart-sdk/maui/Cartesian-Charts/StackedColumn.md b/chart-sdk/maui/Cartesian-Charts/StackedColumn.md index 40c9098e7..71838111c 100644 --- a/chart-sdk/maui/Cartesian-Charts/StackedColumn.md +++ b/chart-sdk/maui/Cartesian-Charts/StackedColumn.md @@ -1,7 +1,7 @@ --- layout: post -title: Stacked Column Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about stacked column and bar chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Stacked Column Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Stacked Column Chart in .NET MAUI Cartesian Chart displays stacked columns to visualize cumulative values and part-to-whole relationships across categories. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ The stacked column chart represents data values in a stacked format, where the c To render a stacked column chart, create an instance of the [StackingColumnSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.StackingColumnSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/StackedColumn100.md b/chart-sdk/maui/Cartesian-Charts/StackedColumn100.md index 6a8f3e998..d4d12a4c6 100644 --- a/chart-sdk/maui/Cartesian-Charts/StackedColumn100.md +++ b/chart-sdk/maui/Cartesian-Charts/StackedColumn100.md @@ -1,18 +1,18 @@ --- layout: post -title: StackedColumn100 Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about StackedColumn100 chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Stacked Column 100 Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Stacked Column 100 Chart in .NET MAUI Cartesian Chart displays stacked columns as percentages, helping visualize proportional data across categories. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui stacked column 100 chart, stacked column 100 chart customization .net maui, syncfusion maui stacked column 100 chart, cartesian stacked column 100 chart maui, .net maui chart stacked column 100 visualization, .net maui 100% stacked column chart, cartesian 100% stacked column chart maui. --- -# StackedColumn100 Chart in .NET MAUI Cartesian Chart +# Stacked Column 100 Chart in .NET MAUI Cartesian Chart A stacked column 100% chart is a type of stacked chart that is used to display the proportion of different categories within a single column. The columns are stacked on top of each other, and a cumulative portion of each stacked element always comes to a total of 100%. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## StackedColumn100 Chart @@ -132,7 +132,7 @@ You can group and stack similar stacked column 100 series types using the [Group -{% endhighlight xaml %} +{% endhighlight %} {% highlight c# %} diff --git a/chart-sdk/maui/Cartesian-Charts/StackedLine.md b/chart-sdk/maui/Cartesian-Charts/StackedLine.md index 81dbc50da..111eb8d06 100644 --- a/chart-sdk/maui/Cartesian-Charts/StackedLine.md +++ b/chart-sdk/maui/Cartesian-Charts/StackedLine.md @@ -1,7 +1,7 @@ --- layout: post -title: Stacked Line Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about stacked line chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Stacked Line Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Stacked Line Chart in .NET MAUI Cartesian Chart displays cumulative data using stacked lines, helping visualize overall trends and contributions across series. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ The stacked line chart is a type of chart that displays multiple line series sta To render a stacked line chart, create an instance of the [StackingLineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.StackingLineSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has a [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/StackedLine100.md b/chart-sdk/maui/Cartesian-Charts/StackedLine100.md index bd057cce9..b3181ee03 100644 --- a/chart-sdk/maui/Cartesian-Charts/StackedLine100.md +++ b/chart-sdk/maui/Cartesian-Charts/StackedLine100.md @@ -1,7 +1,7 @@ --- layout: post -title: Stacked Line 100 Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about stacked line 100 chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Stacked Line 100 Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Stacked Line 100 Chart in .NET MAUI Cartesian Chart displays percentage contributions using stacked lines, helping visualize proportional trends across series. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -16,7 +16,7 @@ The stacked line 100 chart is a type of chart that displays multiple line series To render a stacked line 100 chart, create an instance of the [StackingLine100Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.StackingLine100Series.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has a [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/StepArea.md b/chart-sdk/maui/Cartesian-Charts/StepArea.md index 08497e353..819636cc1 100644 --- a/chart-sdk/maui/Cartesian-Charts/StepArea.md +++ b/chart-sdk/maui/Cartesian-Charts/StepArea.md @@ -1,7 +1,7 @@ --- layout: post -title: Step Area Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the Step area chart types and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Step Area Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Step Area Chart in .NET MAUI Cartesian Chart displays data as stepped filled areas, making it easy to visualize changes between discrete values. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui step area chart, maui step area chart, .net maui chart step A step area chart displays data that changes over time or across different categories. In a step area chart, the data points are connected by horizontal and vertical lines to create a series of steps. Each step represents a specific time interval or category. The area between the steps is then filled with a color or shading. To render an area chart, create an instance of [StepAreaSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.StepAreaSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) collection property of the [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_Series) as its default content. diff --git a/chart-sdk/maui/Cartesian-Charts/StepLine.md b/chart-sdk/maui/Cartesian-Charts/StepLine.md index 2f4ecdea5..b0632a9f0 100644 --- a/chart-sdk/maui/Cartesian-Charts/StepLine.md +++ b/chart-sdk/maui/Cartesian-Charts/StepLine.md @@ -1,7 +1,7 @@ --- layout: post -title: StepLine Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about stepline chart support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Step Line Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Step Line Chart in .NET MAUI Cartesian Chart displays data using horizontal and vertical line segments, making discrete value changes easy to visualize. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui step line chart, maui step line chart, step line chart custo A step line chart is used to display the data showing changes in values over time by connecting points on plots with a combination of horizontal and vertical lines. And it's used when it is necessary to highlight the irregularity changes. It appears to be steps. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Step Line Chart @@ -44,7 +44,7 @@ N> The Cartesian chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusi -{% endhighlight xaml %} +{% endhighlight %} {% highlight c# %} @@ -72,7 +72,7 @@ chart.Series.Add(series1); chart.Series.Add(series2); this.Content = chart; -{% endhighlight c# %} +{% endhighlight %} {% endtabs %} @@ -110,7 +110,7 @@ The [StrokeDashArray](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts -{% endhighlight xaml %} +{% endhighlight %} {% highlight c# %} @@ -137,7 +137,7 @@ StepLineSeries steplineSeries = new StepLineSeries() chart.Series.Add(steplineSeries); this.Content = chart; -{% endhighlight c# %} +{% endhighlight %} {% endtabs %} @@ -171,7 +171,7 @@ The [IsTransposed](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.Sf -{% endhighlight xaml %} +{% endhighlight %} {% highlight c# %} @@ -203,7 +203,7 @@ chart.Series.Add(steplineSeries); chart.Series.Add(steplineSeries1); this.Content = chart; -{% endhighlight c# %} +{% endhighlight %} {% endtabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Tooltip.md b/chart-sdk/maui/Cartesian-Charts/Tooltip.md index 07b251a21..9d78baa69 100644 --- a/chart-sdk/maui/Cartesian-Charts/Tooltip.md +++ b/chart-sdk/maui/Cartesian-Charts/Tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains about how to enable tooltip and its customization in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Tooltip in .NET MAUI Cartesian Chart | Syncfusion® +description: Tooltip in .NET MAUI Cartesian Chart displays detailed information for data points on interaction, helping users analyze and understand chart data easily. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui chart tooltip, maui chart tooltip, .net maui chart tooltip c Tooltip is used to display any information or metadata of the tapped segment. The Cartesian chart provides tooltip support for all series. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. To learn how to customize the tooltips in .NET MAUI Cartesian Charts quickly, you can check the below video. diff --git a/chart-sdk/maui/Cartesian-Charts/Trackball.md b/chart-sdk/maui/Cartesian-Charts/Trackball.md index eb5f3c1a9..9c1ea3e5b 100644 --- a/chart-sdk/maui/Cartesian-Charts/Trackball.md +++ b/chart-sdk/maui/Cartesian-Charts/Trackball.md @@ -1,7 +1,7 @@ --- layout: post -title: Trackball in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains about how to enable trackball and its customization in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Trackball in .NET MAUI Cartesian Chart | Syncfusion® +description: Trackball in .NET MAUI Cartesian Chart displays detailed information across series at a specific position, enabling precise data analysis and comparison. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui cartesian chart trackball, maui chart trackball, .net maui t The trackball allows you to show a tooltip for the nearest data points when you interact with the chart area. On mobile, long-press the chart to show the trackball, and drag the chart to change the trackball's location constantly. To display the trackball on the desktop, move the cursor over the chart area. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Enable trackball diff --git a/chart-sdk/maui/Cartesian-Charts/Transform-axis-value-to-pixel-value-and-vice-versa.md b/chart-sdk/maui/Cartesian-Charts/Transform-axis-value-to-pixel-value-and-vice-versa.md index 0333d28fc..008e0b345 100644 --- a/chart-sdk/maui/Cartesian-Charts/Transform-axis-value-to-pixel-value-and-vice-versa.md +++ b/chart-sdk/maui/Cartesian-Charts/Transform-axis-value-to-pixel-value-and-vice-versa.md @@ -1,21 +1,21 @@ --- layout: post -title: Transform axis value to pixel value and vice-versa in .NET MAUI Cartesian Chart | Syncfusion -description: Learn how to transform an axis value to a pixel value and vice-versa in SfCartesianChart in the Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: How to Convert Axis and Pixel Values in .NET MAUI Chart | Syncfusion® +description: Convert an axis value to a pixel value and vice versa in Syncfusion® .NET MAUI Cartesian Chart for coordinate mapping and chart interactions. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui chart transform axis value to pixel, maui chart axis value to pixel conversion, .net maui chart axis pixel to value, syncfusion maui chart axis coordinate transformation, sfCartesianChart axis value to pixel conversion in .net maui --- -# Transform axis value to pixel value and vice-versa in .NET MAUI Cartesian Chart +# How to Convert Axis and Pixel Values in .NET MAUI Chart [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) offers two utility methods to transform a pixel into a chart point and vice-versa. * [`ValueToPoint(ChartAxis axis, double value)`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_ValueToPoint_Syncfusion_Maui_Charts_ChartAxis_System_Double_) - Converts the data point value to the screen point. * [`PointToValue(ChartAxis axis, double x, double y)`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html#Syncfusion_Maui_Charts_SfCartesianChart_PointToValue_Syncfusion_Maui_Charts_ChartAxis_System_Double_System_Double_) - Converts the screen point to the chart value. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Trendlines.md b/chart-sdk/maui/Cartesian-Charts/Trendlines.md index ae09cbc2c..080cec5bd 100644 --- a/chart-sdk/maui/Cartesian-Charts/Trendlines.md +++ b/chart-sdk/maui/Cartesian-Charts/Trendlines.md @@ -1,7 +1,7 @@ --- layout: post -title: Trendlines in .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains all about trendlines support in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Trendlines in .NET MAUI Cartesian Chart | Syncfusion® +description: Trendlines in .NET MAUI Cartesian Chart display data trends and patterns using statistical analysis, helping identify relationships and forecast outcomes. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -10,13 +10,13 @@ keywords: .net maui cartesian chart trendlines, maui chart trendlines, cartesian # Trendlines in .NET MAUI Cartesian Chart -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. A [trendline](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTrendline.html) is a visual representation of the linear relationship between data points in a series. It shows the overall direction and trend of data by fitting a line (or curve) through the data points. N> Trendlines can be drawn for all types of Cartesian series except bar-type series (Bar, StackingBar, and their 100% variants). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. You can add trendlines to your charts using XAML or C# as shown in the following examples. @@ -488,7 +488,7 @@ this.Content = chart; ## Trendline legend label -N> The chart [legend](https://help.syncfusion.com/maui/cartesian-charts/legend) must be enabled for trendline legend labels to appear. +N> The chart [legend](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/legend) must be enabled for trendline legend labels to appear. You can display a custom label for the trendline in the chart legend using the [Label](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTrendline.html#Syncfusion_Maui_Charts_ChartTrendline_Label) property, of type `string`. This helps distinguish between multiple trendlines and makes your chart more descriptive. diff --git a/chart-sdk/maui/Cartesian-Charts/Waterfall-Chart.md b/chart-sdk/maui/Cartesian-Charts/Waterfall-Chart.md index 1fc7da051..07910c002 100644 --- a/chart-sdk/maui/Cartesian-Charts/Waterfall-Chart.md +++ b/chart-sdk/maui/Cartesian-Charts/Waterfall-Chart.md @@ -1,7 +1,7 @@ --- layout: post -title: Waterfall Chart in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about the Waterfall Series chart and its features in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: Waterfall Chart in .NET MAUI Cartesian Chart | Syncfusion® +description: Waterfall Chart in .NET MAUI Cartesian Chart shows cumulative changes from positive and negative values, helping analyze trends across sequential data points. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -22,7 +22,7 @@ The following properties customize the waterfall series: * [AllowAutoSum](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.WaterfallSeries.html#Syncfusion_Maui_Charts_WaterfallSeries_AllowAutoSum), of type `bool`, is used to change the summary segment calculation. The default value is `true`. When this property is disabled, the segment is rendered using the y value of the provided ItemsSource collection. * [ShowConnectorLine](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.WaterfallSeries.html#Syncfusion_Maui_Charts_WaterfallSeries_ShowConnectorLine), of type `bool`, is used to enable or disable the connector line. The default value is `true`. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Zooming-and-panning.md b/chart-sdk/maui/Cartesian-Charts/Zooming-and-panning.md index 438cea9ab..2e7274a4f 100644 --- a/chart-sdk/maui/Cartesian-Charts/Zooming-and-panning.md +++ b/chart-sdk/maui/Cartesian-Charts/Zooming-and-panning.md @@ -1,7 +1,7 @@ --- layout: post -title: Zooming and Panning in .NET MAUI Cartesian Chart control | Syncfusion -description: Learn here all about Zooming and Panning feature of Syncfusion® .NET MAUI Cartesian Chart(SfCartesianChart) control. +title: Zooming and Panning in .NET MAUI Cartesian Chart | Syncfusion® +description: Zooming and Panning in .NET MAUI Cartesian Chart enable interactive navigation across chart data, making it easier to explore and analyze large data sets. platform: chart-sdk control: SfCartesianChart documentation: ug @@ -14,7 +14,7 @@ keywords: .net maui cartesian chart zooming and panning, .net maui zooming and p Zooming and panning allow you to take a close-up look at the data points plotted in the series. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. ## Enable zooming diff --git a/chart-sdk/maui/Cartesian-Charts/display-tooltip-and-data-labels-in-release-mode.md b/chart-sdk/maui/Cartesian-Charts/display-tooltip-and-data-labels-in-release-mode.md index f4a26062a..7f9c8882c 100644 --- a/chart-sdk/maui/Cartesian-Charts/display-tooltip-and-data-labels-in-release-mode.md +++ b/chart-sdk/maui/Cartesian-Charts/display-tooltip-and-data-labels-in-release-mode.md @@ -1,18 +1,18 @@ --- layout: post -title: Show tooltip and datalabels in release mode | Syncfusion -description: Learn here all about displaying tooltip and datalabels in release mode in SfCartesianChart in Syncfusion® .NET MAUI Cartesian Chart (SfCartesianChart) control. +title: How to Preserve Template Bindings in .NET MAUI Chart | Syncfusion® +description: Preserve template bindings in Syncfusion® .NET MAUI Cartesian Chart to maintain data binding behavior and ensure proper template rendering. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: .net maui cartesian chart tooltip, .net maui cartesian chart data label, tooltipinfo item binding, chartdatalabel item binding, release mode trimming, preserve attribute maui --- -# Display tooltip and data labels in release mode in .NET MAUI Cartesian Chart +# How to Preserve Template Bindings in .NET MAUI Cartesian Chart In [SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html), tooltip and data label templates do not bind directly to your business model because these elements are generated by the chart at runtime and often represent calculated points. As a result, the chart provides its own binding context containing the necessary metadata. For tooltips this context is [TooltipInfo](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.TooltipInfo.html), and for data labels it is [ChartDataLabel](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabel.html). Both expose an Item property that points back to your original business model when a direct mapping exists. With .NET 9 compiled bindings, set **x:DataType="chart:TooltipInfo"** for tooltip templates and **x:DataType="chart:ChartDataLabel"** for data label templates, then bind through Item. If you need a specific field from your model, bind to Item and use a value converter to extract the desired property. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/cartesian-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCartesianChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started)** guide. `Ahead-of-Time (AOT)` compilation converts Intermediate Language to native code at build time to improve startup and runtime performance. AOT commonly ships together with linker trimming in Release configurations to reduce app size. diff --git a/chart-sdk/maui/Cartesian-Charts/migration.md b/chart-sdk/maui/Cartesian-Charts/migration.md index bc7cf2db7..f4e84a641 100644 --- a/chart-sdk/maui/Cartesian-Charts/migration.md +++ b/chart-sdk/maui/Cartesian-Charts/migration.md @@ -1,14 +1,14 @@ --- layout: post -title: Migration from Xamarin to .NET MAUI Cartesian Chart control | Syncfusion -description: This section explains the features available in the .NET MAUI Cartesian Chart (SfCartesianChart) control over Xamarin SfChart. +title: Migrate SfChart to .NET MAUI Cartesian Chart | Syncfusion® +description: Migrate from Xamarin.Forms SfChart to .NET MAUI Cartesian Chart with updated APIs, improved performance, and modern charting features for data visualization. platform: chart-sdk control: SfCartesianChart documentation: ug keywords: migrate from xamarin.Forms sfChart to .net maui sfCartesianChart, transitioning from xamarin.Forms sfChart to .net maui sfCartesianChart, move from xamarin.Forms sfChart to .net maui sfCartesianChart, upgrading xamarin.Forms s to .net maui sfCartesianChart. --- -# Migrate from Xamarin.Forms SfChart to .NET MAUI SfCartesianChart +# Migrate from Xamarin.Forms SfChart to .NET MAUI Cartesian Chart The Cartesian Chart was created from scratch using the upgraded APIs and performance of the .NET MAUI graphics library and framework layouts. However, a minor code change is required. In addition, [SfChart](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfChart.XForms.SfChart.html) has been divided into five chart controls in .NET MAUI for a better user experience and understanding. @@ -806,7 +806,7 @@ this.Content = chart; -N> For more information about selection check [here](https://help.syncfusion.com/maui/cartesian-charts/selection). +N> For more information about selection check [here](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/selection). ### Zooming and Panning diff --git a/chart-sdk/maui/Circular-Charts/Appearance.md b/chart-sdk/maui/Circular-Charts/Appearance.md index 8bca18210..8c08e523c 100644 --- a/chart-sdk/maui/Circular-Charts/Appearance.md +++ b/chart-sdk/maui/Circular-Charts/Appearance.md @@ -1,7 +1,7 @@ --- layout: post -title: Appearance in .NET MAUI Circular Chart control | Syncfusion -description: Learn here all about appearance customization in .NET MAUI Circular Chart (SfCircularChart), its elements and more. +title: Appearance in .NET MAUI Circular Chart | Syncfusion® +description: Appearance customization in .NET MAUI Circular Chart allows you to personalize chart visuals using colors, palettes, gradients. platform: chart-sdk control: SfCircularChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The appearance of the [SfCircularChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html) can be customized by using the predefined palettes, custom palettes, and gradient which allows enriching the application. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Add a title diff --git a/chart-sdk/maui/Circular-Charts/DataLabels.md b/chart-sdk/maui/Circular-Charts/DataLabels.md index 3b021a883..405edfd27 100644 --- a/chart-sdk/maui/Circular-Charts/DataLabels.md +++ b/chart-sdk/maui/Circular-Charts/DataLabels.md @@ -1,7 +1,7 @@ --- layout: post -title: Data label in .NET MAUI Circular Chart control | Syncfusion -description: This section explains about how to configure the data labels and its features in .NET MAUI Circular Chart (SfCircularChart). +title: Data label in .NET MAUI Circular Chart | Syncfusion® +description: Data label in .NET MAUI Circular Chart displays data point values directly on chart segments, improving readability and enabling quick data interpretation. platform: chart-sdk control: SfCircularChart documentation: ug @@ -16,7 +16,7 @@ Each data label can be represented by the following: * Label - displays the segment label content at the (X, Y) point. * Connector line - used to connect the (X, Y) point and the label element. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Enable data labels diff --git a/chart-sdk/maui/Circular-Charts/DoughnutChart.md b/chart-sdk/maui/Circular-Charts/DoughnutChart.md index 7f573d521..e40be6e16 100644 --- a/chart-sdk/maui/Circular-Charts/DoughnutChart.md +++ b/chart-sdk/maui/Circular-Charts/DoughnutChart.md @@ -1,7 +1,7 @@ --- layout: post -title: Doughnut chart in .NET MAUI Circular Chart control | Syncfusion -description: Learn here all about doughnut chart and its features in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Doughnut chart in .NET MAUI Circular Chart | Syncfusion® +description: Doughnut chart in .NET MAUI Circular Chart displays data as proportional segments in a circular ring, making it easy to visualize part-to-whole relationships. platform: chart-sdk control: SfCircularChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug [DoughnutSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DoughnutSeries.html) is similar to [PieSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html). It is used to show the relationship between parts of data and whole data. To render a [DoughnutSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DoughnutSeries.html) in circular chart, create an instance of the [DoughnutSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DoughnutSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html#Syncfusion_Maui_Charts_SfCircularChart_Series) collection property of [SfCircularChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. N> The circular chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html#Syncfusion_Maui_Charts_SfCircularChart_Series) as its default content. diff --git a/chart-sdk/maui/Circular-Charts/Explode.md b/chart-sdk/maui/Circular-Charts/Explode.md index bd1c5b3dd..3dc6f9af8 100644 --- a/chart-sdk/maui/Circular-Charts/Explode.md +++ b/chart-sdk/maui/Circular-Charts/Explode.md @@ -1,13 +1,13 @@ --- layout: post -title: Explode segments in .NET MAUI Circular Chart control | Syncfusion -description: This section explains about how to explode a single segment or all segments in the Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Explode Segments in .NET MAUI Circular Chart | Syncfusion® +description: Explode segments in .NET MAUI Circular Chart highlights specific data points by separating slices, making key values easier to identify and analyze. platform: chart-sdk control: SfCircularChart documentation: ug --- -# Explode segments in .NET MAUI SfCircularChart +# Explode Segments in .NET MAUI Circular Chart ## Exploding a segment @@ -17,7 +17,7 @@ Exploding a segment pulls attention to a specific area of the circular chart. Th * [ExplodeRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html#Syncfusion_Maui_Charts_PieSeries_ExplodeRadius), of type `double`, defines the explode distance in pixels (px). The default value is `10`. A positive value moves the segment outward from the center. * [ExplodeOnTouch](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html#Syncfusion_Maui_Charts_PieSeries_ExplodeOnTouch), of type `bool`, enables a segment to be exploded on tap interaction. The default value is `false`. The explosion is animated when tapped. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Circular-Charts/Exporting.md b/chart-sdk/maui/Circular-Charts/Exporting.md index e45268299..40b219cbe 100644 --- a/chart-sdk/maui/Circular-Charts/Exporting.md +++ b/chart-sdk/maui/Circular-Charts/Exporting.md @@ -1,7 +1,7 @@ --- layout: post -title: Exporting in .NET MAUI Circular Chart control | Syncfusion -description: Learn here how to export the chart view as an image and stream in the Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Exporting in .NET MAUI Circular Chart | Syncfusion® +description: Exporting in .NET MAUI Circular Chart enables you to save charts as image files or export them for sharing, reporting, and presentation purposes. platform: chart-sdk control: SfCircularChart documentation: ug @@ -9,7 +9,7 @@ documentation: ug # Exporting in .NET MAUI Circular Chart -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Export as an image diff --git a/chart-sdk/maui/Circular-Charts/Getting-Started.md b/chart-sdk/maui/Circular-Charts/Getting-Started.md index a80b224c7..5e3dddb71 100644 --- a/chart-sdk/maui/Circular-Charts/Getting-Started.md +++ b/chart-sdk/maui/Circular-Charts/Getting-Started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Circular Chart control | Syncfusion -description: Learn here all about getting started with Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control, its elements, and more. +title: Getting Started with .NET MAUI Circular Chart | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Circular Chart control. Explore setup, chart types, customization, and data visualization features. platform: chart-sdk control: SfCircularChart documentation: ug diff --git a/chart-sdk/maui/Circular-Charts/GroupTo.md b/chart-sdk/maui/Circular-Charts/GroupTo.md index 783018567..3a0b32bbb 100644 --- a/chart-sdk/maui/Circular-Charts/GroupTo.md +++ b/chart-sdk/maui/Circular-Charts/GroupTo.md @@ -1,17 +1,17 @@ --- layout: post -title: Grouping data points in .NET MAUI Circular Chart control | Syncfusion -description: This section explains about how to group data points in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Grouping Data Points in .NET MAUI Circular Chart | Syncfusion® +description: Grouping data points in .NET MAUI Circular Chart combines smaller segments into a single category, improving readability and simplifying data visualization. platform: chart-sdk control: SfCircularChart documentation: ug --- -# Grouping Data Points in .NET MAUI SfCircularChart +# Grouping Data Points in .NET MAUI Circular Chart The small segments in the circular chart can be grouped into an `Others` category using the [GroupTo](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html#Syncfusion_Maui_Charts_PieSeries_GroupTo) and [GroupMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html#Syncfusion_Maui_Charts_PieSeries_GroupMode) properties of the [PieSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html). The [GroupMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html#Syncfusion_Maui_Charts_PieSeries_GroupMode) property is used to specify the grouping type based on slice angle (`Angle`), actual data point value (`Value`), or percentage (`Percentage`). The [GroupTo](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html#Syncfusion_Maui_Charts_PieSeries_GroupTo) property is used to set the limit to group data points into a single slice. The grouped segment is labeled as `Others` in the chart legend. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Group mode diff --git a/chart-sdk/maui/Circular-Charts/Legend.md b/chart-sdk/maui/Circular-Charts/Legend.md index 3458dcd8c..4aec0ca16 100644 --- a/chart-sdk/maui/Circular-Charts/Legend.md +++ b/chart-sdk/maui/Circular-Charts/Legend.md @@ -1,18 +1,18 @@ --- layout: post -title: Legend in .NET MAUI Circular Chart control | Syncfusion -description: This section explains about how to initialize legend and its customization in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Legend in .NET MAUI Circular Chart | Syncfusion® +description: Legend in .NET MAUI Circular Chart displays series information with customizable styles, helping users identify and interpret chart segments easily. platform: chart-sdk control: SfCircularChart documentation: ug keywords: .net maui circular chart, chart legend, legend-wrap, legend view, legend layout, chart legend items, legend alignment. --- -# Legend in .NET MAUI Circular Chart (SfCircularChart) +# Legend in .NET MAUI Circular Chart The [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_Legend) provides a list of data points, helping to identify the corresponding data points in the chart. This guide explains how to define and customize the legend in the circular chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Defining the legend To define the legend in the chart, initialize the [ChartLegend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html) class and assign it to the [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_Legend) property. diff --git a/chart-sdk/maui/Circular-Charts/Liquid-Glass-Effect.md b/chart-sdk/maui/Circular-Charts/Liquid-Glass-Effect.md index 6cdba8c23..21eb0646d 100644 --- a/chart-sdk/maui/Circular-Charts/Liquid-Glass-Effect.md +++ b/chart-sdk/maui/Circular-Charts/Liquid-Glass-Effect.md @@ -1,7 +1,7 @@ --- layout: post -title: Liquid Glass Effect in .NET MAUI Circular Chart control | Syncfusion -description: Learn how to enable and customize the Liquid Glass visual effect in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) for stunning UI.. +title: Liquid Glass Effect in .NET MAUI Circular Chart | Syncfusion® +description: Liquid Glass Effect in .NET MAUI Circular Chart applies a sleek glass-like visual style to chart elements, enhancing the overall look and user experience. platform: chart-sdk control: SfCircularChart documentation: ug @@ -13,7 +13,7 @@ keywords: .net maui chart, cupertino theme, glass effect, maui cupertino chart, The Liquid Glass Effect is a modern design style that provides a sleek, minimalist appearance with clean lines, subtle visual effects, and elegant styling. It features smooth rounded corners and sophisticated visual treatments that create a polished, professional look for your charts. N> **Prerequisite:** -- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. - To use **SfGlassEffectView**, ensure that the Syncfusion.Maui.Core package is installed and import the Syncfusion.Maui.Core namespace. N> The liquid glass effect is supported with `.NET 10` and on iOS and macOS versions 26 or later. diff --git a/chart-sdk/maui/Circular-Charts/Overview.md b/chart-sdk/maui/Circular-Charts/Overview.md index a11acc01e..180bb46f0 100644 --- a/chart-sdk/maui/Circular-Charts/Overview.md +++ b/chart-sdk/maui/Circular-Charts/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Circular Chart Control | Syncfusion -description: Learn here all about introduction of Syncfusion® .NET MAUI Chart(SfCircularChart) control with key features and more. +title: About Syncfusion® .NET MAUI Circular Chart Control | Syncfusion +description: Learn about the overview of Syncfusion® .NET MAUI Circular Chart control, including chart types, customization options, and data visualization features. platform: chart-sdk control: SfCircularChart documentation: ug --- -# .NET MAUI Circular Chart Overview +# About Syncfusion® .NET MAUI Circular Chart Control Syncfusion® [.NET MAUI Charts](https://www.syncfusion.com/maui-controls/maui-circular-charts) (SfCircularChart) is used to create the chart with beautiful and enhanced UI visualization of data that are used in high-quality .NET MAUI applications. @@ -72,7 +72,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Circular Charts +Circular Charts full-support not-applicable full-support @@ -83,16 +83,16 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Cartesian Charts](https://help.syncfusion.com/maui/cartesian-charts/overview) for trend analysis, comparisons, and multi‑series data visualization using X and Y axes. -- [Funnel Charts](https://help.syncfusion.com/maui/funnel-charts/overview) for visualizing stages in a process or pipeline. -- [Pyramid Charts](https://help.syncfusion.com/maui/pyramid-charts/overview) for hierarchical or comparative data representation. +- [Cartesian Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for trend analysis, comparisons, and multi‑series data visualization using X and Y axes. +- [Funnel Charts](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/overview) for visualizing stages in a process or pipeline. +- [Pyramid Charts](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/overview) for hierarchical or comparative data representation. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started) shows a step‑by‑step guide to begin using the Circular Chart control. -- [Pie Chart](https://help.syncfusion.com/maui/circular-charts/piechart) creates simple part‑to‑whole visualizations with clear category splits. -- [Doughnut Chart](https://help.syncfusion.com/maui/circular-charts/doughnutchart) highlights proportions with a modern ring‑style chart for better readability. -- [RadialBar Chart](https://help.syncfusion.com/maui/circular-charts/radialbarchart) displays values in a circular bar style, making comparisons visually clear and engaging. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started) shows a step‑by‑step guide to begin using the Circular Chart control. +- [Pie Chart](https://help.syncfusion.com/chart-sdk/maui/circular-charts/piechart) creates simple part‑to‑whole visualizations with clear category splits. +- [Doughnut Chart](https://help.syncfusion.com/chart-sdk/maui/circular-charts/doughnutchart) highlights proportions with a modern ring‑style chart for better readability. +- [RadialBar Chart](https://help.syncfusion.com/chart-sdk/maui/circular-charts/radialbarchart) displays values in a circular bar style, making comparisons visually clear and engaging. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/Circular-Charts/PieChart.md b/chart-sdk/maui/Circular-Charts/PieChart.md index 5ec527256..8adbe7831 100644 --- a/chart-sdk/maui/Circular-Charts/PieChart.md +++ b/chart-sdk/maui/Circular-Charts/PieChart.md @@ -1,7 +1,7 @@ --- layout: post -title: Pie Chart in .NET MAUI Circular Chart control | Syncfusion -description: Learn here all about the pie chart and its features in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Pie Chart in .NET MAUI Circular Chart | Syncfusion® +description: Pie Chart in .NET MAUI Circular Chart represents data as proportional slices, helping users visualize part-to-whole relationships clearly and effectively. platform: chart-sdk control: SfCircularChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug To render a [PieSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html) in a circular chart, create an instance of the [PieSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PieSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html#Syncfusion_Maui_Charts_SfCircularChart_Series) collection property of [SfCircularChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. N> The circular chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html#Syncfusion_Maui_Charts_SfCircularChart_Series) as its default content. diff --git a/chart-sdk/maui/Circular-Charts/RadialBarChart.md b/chart-sdk/maui/Circular-Charts/RadialBarChart.md index 8960d1010..f1550f0df 100644 --- a/chart-sdk/maui/Circular-Charts/RadialBarChart.md +++ b/chart-sdk/maui/Circular-Charts/RadialBarChart.md @@ -1,7 +1,7 @@ --- layout: post -title: Radial Bar chart in .NET MAUI Circular Chart control | Syncfusion -description: Learn here all about radial bar chart and its features in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control. +title: Radial Bar Chart in .NET MAUI Circular Chart | Syncfusion® +description: Radial Bar Chart in .NET MAUI Circular Chart visualizes values as radial bars in a circular layout, making it easy to compare and track data effectively. platform: chart-sdk control: SfCircularChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug [RadialBarSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RadialBarSeries.html) is a type of doughnut chart that represents each segment as a separate circle. It is used to compare values between various categories. To render a [RadialBarSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RadialBarSeries.html) in circular chart, create an instance of the [RadialBarSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RadialBarSeries.html) and add it to the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html#Syncfusion_Maui_Charts_SfCircularChart_Series) collection property of [SfCircularChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. N> The circular chart has [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html#Syncfusion_Maui_Charts_SfCircularChart_Series) as its default content. diff --git a/chart-sdk/maui/Circular-Charts/Selection.md b/chart-sdk/maui/Circular-Charts/Selection.md index 3446869a8..7558455b7 100644 --- a/chart-sdk/maui/Circular-Charts/Selection.md +++ b/chart-sdk/maui/Circular-Charts/Selection.md @@ -1,7 +1,7 @@ --- layout: post -title: Selection in .NET MAUI Circular Chart control | Syncfusion -description: This section explains about how to configure the selection support and its features applying in .NET MAUI Circular Chart (SfCircularChart). +title: Selection in .NET MAUI Circular Chart | Syncfusion® +description: Selection in .NET MAUI Circular Chart allows users to highlight and interact with specific chart segments, improving data analysis and user engagement. platform: chart-sdk control: SfCircularChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The [SfCircularChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCircularChart.html) provides selection behavior support, which allows you to select or highlight a segment (data points) in a series using the [DataPointSelectionBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataPointSelectionBehavior.html). When a user taps or clicks on a segment, the selection behavior highlights that data point with the specified selection brush color. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Enable selection diff --git a/chart-sdk/maui/Circular-Charts/Tooltip.md b/chart-sdk/maui/Circular-Charts/Tooltip.md index 03988b81e..ee29047ea 100644 --- a/chart-sdk/maui/Circular-Charts/Tooltip.md +++ b/chart-sdk/maui/Circular-Charts/Tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Circular Chart control | Syncfusion -description: This section explains about how to enable tooltip and its customization in Syncfusion® .NET MAUI Circular Chart (SfCircularChart) control +title: Tooltip in .NET MAUI Circular Chart | Syncfusion® +description: Tooltip in .NET MAUI Circular Chart displays detailed information for chart segments on interaction, helping users quickly understand and analyze data. platform: chart-sdk control: SfCircularChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug Tooltip is used to display any information or metadata of the tapped segment. The Circular Chart provides tooltip support for all series. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/circular-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfCircularChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/circular-charts/getting-started)** guide. ## Define Tooltip diff --git a/chart-sdk/maui/Circular-Charts/migration.md b/chart-sdk/maui/Circular-Charts/migration.md index 83c99f7f4..150cfe315 100644 --- a/chart-sdk/maui/Circular-Charts/migration.md +++ b/chart-sdk/maui/Circular-Charts/migration.md @@ -1,13 +1,13 @@ --- layout: post -title: Migration from Xamarin to .NET MAUI CircularChart control | Syncfusion -description: This section explains the features available in the .NET MAUI Chart (SfCircularChart) control over Xamarin SfChart. +title: Migrate SfChart to Circular Chart | Syncfusion® +description: Migrate from Xamarin.Forms SfChart to .NET MAUI Circular Chart with updated APIs, enhanced performance, and modern features for circular data visualization. platform: chart-sdk control: SfCircularChart documentation: ug --- -# Migrate from Xamarin.Forms SfChart to .NET MAUI SfCircularChart +# Migrate from Xamarin.Forms SfChart to .NET MAUI Circular Chart The Circular Chart was created from scratch using the upgraded APIs and performance of the .NET MAUI graphics library and framework layouts. However, a minor code change is required. In addition, [SfChart](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfChart.XForms.SfChart.html) has been divided into five chart controls in .NET MAUI for a better user experience and understanding. @@ -631,7 +631,7 @@ this.Content = chart; -N> For more information about selection check [here](https://help.syncfusion.com/maui/circular-charts/selection). +N> For more information about selection check [here](https://help.syncfusion.com/chart-sdk/maui/circular-charts/selection). ## Upcoming features in .NET MAUI diff --git a/chart-sdk/maui/DigitalGauge/Character-Display-Types.md b/chart-sdk/maui/DigitalGauge/Character-Display-Types.md index a01fee30a..336c64526 100644 --- a/chart-sdk/maui/DigitalGauge/Character-Display-Types.md +++ b/chart-sdk/maui/DigitalGauge/Character-Display-Types.md @@ -1,7 +1,7 @@ --- layout: post -title: Character Display Types in .NET MAUI Digital Gauge | Syncfusion -description: Learn here all about Display Types support in Syncfusion® .NET MAUI Digital Gauge (SfDigitalGauge) control and more. +title: Character Display Types in .NET MAUI Digital Gauge | Syncfusion® +description: Character Display Types in .NET MAUI Digital Gauge support various segment styles for rendering characters, enabling flexible and customizable digital displays. platform: chart-sdk control: DigitalGauge documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui, .net maui digital gauge, digital gauge, character segments, The digital gauge displays numbers, the alphabet, and special characters, which are given in the [text](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfDigitalGauge.html#Syncfusion_Maui_Gauges_SfDigitalGauge_Text) property. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/digitalgauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/getting-started)** guide. ## Display numbers diff --git a/chart-sdk/maui/DigitalGauge/Character-Segment-Types.md b/chart-sdk/maui/DigitalGauge/Character-Segment-Types.md index 459354919..8980f07a0 100644 --- a/chart-sdk/maui/DigitalGauge/Character-Segment-Types.md +++ b/chart-sdk/maui/DigitalGauge/Character-Segment-Types.md @@ -1,7 +1,7 @@ --- layout: post -title: Character Types in .NET MAUI Digital Gauge | Syncfusion -description: Learn here all about Character Types support in Syncfusion® .NET MAUI Digital Gauge (SfDigitalGauge) control and more. +title: Character Types in .NET MAUI Digital Gauge | Syncfusion® +description: Character Types in .NET MAUI Digital Gauge support different character formats for displaying numeric and alphanumeric values in digital gauge displays. platform: chart-sdk control: DigitalGauge documentation: ug @@ -17,7 +17,7 @@ The digital characters can be displayed in the following four different segments * [SixteenSegment](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.DigitalGaugeCharacterType.html#Syncfusion_Maui_Gauges_DigitalGaugeCharacterType_SixteenSegment) * [EightCrossEightDotMatrix](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.DigitalGaugeCharacterType.html#Syncfusion_Maui_Gauges_DigitalGaugeCharacterType_EightCrossEightDotMatrix) -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/digitalgauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/getting-started)** guide. ## Seven segment diff --git a/chart-sdk/maui/DigitalGauge/Customization.md b/chart-sdk/maui/DigitalGauge/Customization.md index c29e6207b..aafe8abfd 100644 --- a/chart-sdk/maui/DigitalGauge/Customization.md +++ b/chart-sdk/maui/DigitalGauge/Customization.md @@ -1,7 +1,7 @@ --- layout: post -title: Customize Character Segments in .NET MAUI Digital Gauge | Syncfusion -description: Learn here all about Customize Character Segments support in Syncfusion® .NET MAUI Digital Gauge (SfDigitalGauge) control and more. +title: Customize Character Segments in .NET MAUI Digital Gauge | Syncfusion® +description: Customize Character Segments in .NET MAUI Digital Gauge enables segment-level styling and appearance customization for flexible digital value displays. platform: chart-sdk control: DigitalGauge documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui, .net maui digital gauge, digital gauge, character segments, The characters of a digital gauge can be customized in terms of [CharacterWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfDigitalGauge.html#Syncfusion_Maui_Gauges_SfDigitalGauge_CharacterWidth), [CharacterHeight](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfDigitalGauge.html#Syncfusion_Maui_Gauges_SfDigitalGauge_CharacterHeight), [CharacterSpacing](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfDigitalGauge.html#Syncfusion_Maui_Gauges_SfDigitalGauge_CharacterSpacing), and [CharacterStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfDigitalGauge.html#Syncfusion_Maui_Gauges_SfDigitalGauge_CharacterStroke). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/digitalgauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/getting-started)** guide. ## Customize character size diff --git a/chart-sdk/maui/DigitalGauge/Events.md b/chart-sdk/maui/DigitalGauge/Events.md index b03462d5a..e5065db92 100644 --- a/chart-sdk/maui/DigitalGauge/Events.md +++ b/chart-sdk/maui/DigitalGauge/Events.md @@ -1,7 +1,7 @@ --- layout: post -title: Events in .NET MAUI Digital Gauge | Syncfusion -description: Learn about events in the Syncfusion® .NET MAUI Digital Gauge (SfDigitalGauge) control, its introduction, elements, and more. +title: Events in .NET MAUI Digital Gauge | Syncfusion® +description: Events in .NET MAUI Digital Gauge provide notifications for user interactions and control actions, enabling customized behavior and dynamic updates. platform: chart-sdk control: DigitalGauge documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui, .net maui digital gauge, digital gauge, character segments, The [SfDigitalGauge](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfDigitalGauge.html) control provides events that notify when the text value changes, allowing you to perform custom actions. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/digitalgauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfDigitalGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/getting-started)** guide. ## TextChanged diff --git a/chart-sdk/maui/DigitalGauge/Getting-Started.md b/chart-sdk/maui/DigitalGauge/Getting-Started.md index 66b2beeaa..3ae5378f2 100644 --- a/chart-sdk/maui/DigitalGauge/Getting-Started.md +++ b/chart-sdk/maui/DigitalGauge/Getting-Started.md @@ -1,13 +1,13 @@ --- layout: post -title: Getting Started with in .NET MAUI Digital Gauge | Syncfusion -description: Learn here about getting started with Syncfusion® .NET MAUI Digital Gauge (SfDigitalGauge) control, its elements and more. +title: Getting Started with .NET MAUI Digital Gauge | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Digital Gauge control. Explore setup, character displays, customization, and key features. platform: chart-sdk control: DigitalGauge documentation: ug keywords: .net maui, .net maui digital gauge, digital gauge, character segments, digital character, character types, character display types --- -# Getting Started with the .NET MAUI DigitalGauge +# Getting Started with .NET MAUI Digital Gauge This section explains how to add the [.NET MAUI DigitalGauge](https://www.syncfusion.com/maui-controls/maui-digital-gauge) control. This section covers only the basic features needed to get started with Syncfusion® DigitalGauge. Follow the steps below to add .NET MAUI DigitalGauge control to your project. diff --git a/chart-sdk/maui/DigitalGauge/migration.md b/chart-sdk/maui/DigitalGauge/migration.md index b6fd15f08..1e6cf780c 100644 --- a/chart-sdk/maui/DigitalGauge/migration.md +++ b/chart-sdk/maui/DigitalGauge/migration.md @@ -1,7 +1,7 @@ --- layout: post -title: Migrate from Xamarin to in .NET MAUI Digital Gauge | Syncfusion -description: Learn here all about Migrating from Syncfusion® Xamarin SfDigitalGauge to Syncfusion® .NET MAUI SfDigitalGauge control and more. +title: Migrate SfDigitalGauge to .NET MAUI SfDigitalGauge | Syncfusion® +description: Migrate from Xamarin.Forms SfDigitalGauge to .NET MAUI SfDigitalGauge with updated APIs, improved performance, and modern digital gauge features. platform: chart-sdk control: DigitalGauge documentation: ug diff --git a/chart-sdk/maui/DigitalGauge/overview.md b/chart-sdk/maui/DigitalGauge/overview.md index 14d3e28a5..536ea0be9 100644 --- a/chart-sdk/maui/DigitalGauge/overview.md +++ b/chart-sdk/maui/DigitalGauge/overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Digital Gauge control | Syncfusion -description: Learn here all about introduction of Syncfusion® .NET MAUI Digital Gauge (SfDigitalGauge) control, its elements and more. +title: About Syncfusion® .NET MAUI Digital Gauge Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Digital Gauge control, including character displays, customization options, events, and key features. platform: chart-sdk control: DigitalGauge documentation: ug keywords: .net maui, .net maui digital gauge, digital gauge, character segments, digital character, character types, character display types --- -# .NET MAUI Digital Gauge (SfDigitalGauge) Overview +# About Syncfusion® .NET MAUI Digital Gauge Control The Syncfusion® [.NET MAUI DigitalGauge](https://www.syncfusion.com/maui-controls/maui-digital-gauge) control is used to display alphanumeric characters in digital (LED display) mode. This control displays a range of values that use characters in combination with numbers. @@ -68,7 +68,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Digital Gauge +Digital Gauge no-support no-support no-support @@ -79,15 +79,15 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for visualizing proportional data using circular charts. -- [Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/overview) for representing values using gauge-based visualization. -- [Radial Gauge](https://help.syncfusion.com/maui/radial-gauge/overview) for displaying progress values in a circular style. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for visualizing proportional data using circular charts. +- [Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/overview) for representing values using gauge-based visualization. +- [Radial Gauge](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/overview) for displaying progress values in a circular style. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/digitalgauge/getting-started) shows a step‑by‑step guide to begin using the Digital Gauge control. -- [Segments Types](https://help.syncfusion.com/maui/digitalgauge/character-segment-types) helps you understand different segment types and configurations. -- [Customization](https://help.syncfusion.com/maui/digitalgauge/customization) explains how to customize appearance and behavior of the control. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/getting-started) shows a step‑by‑step guide to begin using the Digital Gauge control. +- [Segments Types](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/character-segment-types) helps you understand different segment types and configurations. +- [Customization](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/customization) explains how to customize appearance and behavior of the control. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/Funnel-Charts/Appearance.md b/chart-sdk/maui/Funnel-Charts/Appearance.md index 2721a1e05..2c654d352 100644 --- a/chart-sdk/maui/Funnel-Charts/Appearance.md +++ b/chart-sdk/maui/Funnel-Charts/Appearance.md @@ -1,7 +1,7 @@ --- layout: post -title: Appearance in .NET MAUI Funnel Chart control | Syncfusion -description: Learn here all about appearance customization in .NET MAUI Funnel Chart (SfFunnelChart) control, its elements and more. +title: Appearance in .NET MAUI Funnel Chart | Syncfusion® +description: Appearance in .NET MAUI Funnel Chart allows you to customize visuals using colors, palettes and styling options. keywords: maui funnel chart, appearance, palette, gradient, title, customization platform: chart-sdk control: SfFunnelChart @@ -12,7 +12,7 @@ documentation: ug The appearance of the [SfFunnelChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfFunnelChart.html) can be customized by using the custom palettes and gradients that enhance the visual appeal of the application. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. ## Add a title diff --git a/chart-sdk/maui/Funnel-Charts/DataLabels.md b/chart-sdk/maui/Funnel-Charts/DataLabels.md index df1f10478..89979d0e5 100644 --- a/chart-sdk/maui/Funnel-Charts/DataLabels.md +++ b/chart-sdk/maui/Funnel-Charts/DataLabels.md @@ -1,7 +1,7 @@ --- layout: post -title: Data Labels in .NET MAUI Funnel Chart control | Syncfusion -description: Learn how to configure, customize, and format data labels in the Syncfusion® .NET MAUI Funnel Chart (SfFunnelChart) control. +title: Data Labels in .NET MAUI Funnel Chart | Syncfusion® +description: Data Labels in .NET MAUI Funnel Chart display values directly on chart segments, helping users understand and interpret data more effectively. platform: chart-sdk control: SfFunnelChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui funnel chart, data labels, label customization, label placem Data labels are used to display values related to a chart segment. Values from data points (x, y) or other custom properties from a data source can be displayed. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. ## Enable data labels diff --git a/chart-sdk/maui/Funnel-Charts/Exporting.md b/chart-sdk/maui/Funnel-Charts/Exporting.md index 1fbbef4fa..44ab3ee6e 100644 --- a/chart-sdk/maui/Funnel-Charts/Exporting.md +++ b/chart-sdk/maui/Funnel-Charts/Exporting.md @@ -1,7 +1,7 @@ --- layout: post -title: Exporting in .NET MAUI Funnel Chart control | Syncfusion -description: Learn how to export the Syncfusion® .NET MAUI Funnel Chart (SfFunnelChart) control as an image and stream. +title: Exporting in .NET MAUI Funnel Chart | Syncfusion® +description: Exporting in .NET MAUI Funnel Chart enables charts to be saved as image files for sharing, reporting, and presentation purposes. platform: chart-sdk control: SfFunnelChart documentation: ug @@ -10,7 +10,7 @@ keywords: .net maui funnel chart, export chart, save image, export stream, png, # Exporting in .NET MAUI Funnel Chart -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. ## Export as an image diff --git a/chart-sdk/maui/Funnel-Charts/Getting-Started.md b/chart-sdk/maui/Funnel-Charts/Getting-Started.md index 258a8a80c..0d30b66bb 100644 --- a/chart-sdk/maui/Funnel-Charts/Getting-Started.md +++ b/chart-sdk/maui/Funnel-Charts/Getting-Started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Funnel Chart control | Syncfusion -description: Learn here all about getting started with Syncfusion® .NET MAUI Funnel Chart (SfFunnelChart) control, its elements, and more. +title: Getting Started with .NET MAUI Funnel Chart | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Funnel Chart control. Explore setup, customization, data labels, and visualization features. keywords: maui funnel chart, getting started, setup, project creation, initialization platform: chart-sdk control: SfFunnelChart diff --git a/chart-sdk/maui/Funnel-Charts/Legend.md b/chart-sdk/maui/Funnel-Charts/Legend.md index 735f9650e..0888e248b 100644 --- a/chart-sdk/maui/Funnel-Charts/Legend.md +++ b/chart-sdk/maui/Funnel-Charts/Legend.md @@ -1,7 +1,7 @@ --- layout: post -title: Legend in .NET MAUI Funnel Chart control | Syncfusion -description: Learn how to initialize, configure, and customize the legend in Syncfusion® .NET MAUI Funnel Chart (SfFunnelChart) control. +title: Legend in .NET MAUI Funnel Chart | Syncfusion® +description: Legend in .NET MAUI Funnel Chart displays chart segment information with customizable styles, helping users identify and understand data categories. platform: chart-sdk control: SfFunnelChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui funnel chart, chart legend, legend wrap, legend view, legend The [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_Legend) provides a list of data points, helping to identify the corresponding funnel segments in the chart. Here's a detailed guide on how to define and customize the legend in the funnel chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. ## Defining the legend diff --git a/chart-sdk/maui/Funnel-Charts/Liquid-Glass-Effect.md b/chart-sdk/maui/Funnel-Charts/Liquid-Glass-Effect.md index c14b6ec14..9c364e7fb 100644 --- a/chart-sdk/maui/Funnel-Charts/Liquid-Glass-Effect.md +++ b/chart-sdk/maui/Funnel-Charts/Liquid-Glass-Effect.md @@ -1,7 +1,7 @@ --- layout: post -title: Liquid Glass Effect in .NET MAUI Funnel Chart control | Syncfusion -description: Learn how to enable and customize the Liquid Glass visual effect in Syncfusion® .NET MAUI Funnel Chart (SfFunnelChart) for stunning UI. +title: Liquid Glass Effect in .NET MAUI Funnel Chart | Syncfusion® +description: Liquid Glass Effect in .NET MAUI Funnel Chart applies a sleek glass-like visual style to chart segments, enhancing chart appearance and visual appeal. platform: chart-sdk control: SfFunnelChart documentation: ug @@ -13,7 +13,7 @@ keywords: .net maui funnel chart, glass effect, liquid glass effect, funnel char The Liquid Glass Effect is a modern design style that provides a sleek, minimalist appearance with clean lines, subtle visual effects, and elegant styling. It features smooth rounded corners and sophisticated visual treatments that create a polished, professional look for your charts. > **Prerequisite:** ->- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +>- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. >- To use **SfGlassEffectView**, ensure that the Syncfusion.Maui.Core package is installed and import the Syncfusion.Maui.Core namespace. N> The liquid glass effect is supported with `.NET 10` and on iOS and macOS versions 26 or later. diff --git a/chart-sdk/maui/Funnel-Charts/Orientation.md b/chart-sdk/maui/Funnel-Charts/Orientation.md index 49358a4aa..b772b83ba 100644 --- a/chart-sdk/maui/Funnel-Charts/Orientation.md +++ b/chart-sdk/maui/Funnel-Charts/Orientation.md @@ -1,7 +1,7 @@ --- layout: post -title: Orientation in .NET MAUI Funnel Chart control (Syncfusion) -description: Learn how to change the rendering direction of segments in .NET MAUI Funnel Chart (SfFunnelChart) using the Orientation property. +title: Orientation in .NET MAUI Funnel Chart | Syncfusion® +description: Orientation in .NET MAUI Funnel Chart allows the funnel to be displayed vertically or horizontally, improving layout flexibility and data presentation. platform: chart-sdk control: SfFunnelChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The rendering direction of the funnel chart can be changed using the [Orientation](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfFunnelChart.html#Syncfusion_Maui_Charts_SfFunnelChart_Orientation) property. The default value of this property is `Vertical`, which arranges segments from bottom to top. It can be set to `Horizontal` to render segments from right to left. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Funnel-Charts/Overview.md b/chart-sdk/maui/Funnel-Charts/Overview.md index 2dcba769e..be1583bce 100644 --- a/chart-sdk/maui/Funnel-Charts/Overview.md +++ b/chart-sdk/maui/Funnel-Charts/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Funnel Chart Control | Syncfusion -description: Learn here all about introduction of Syncfusion® .NET MAUI Chart(SfFunnelChart) control with key features and more +title: About Syncfusion .NET MAUI Funnel Chart Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Funnel Chart control, including customization options, data labels, legends, and visualization features. platform: chart-sdk control: SfFunnelChart documentation: ug --- -# .NET MAUI Funnel Chart Overview +# About Syncfusion® .NET MAUI Funnel Chart Control Syncfusion® [.NET MAUI Funnel Chart](https://www.syncfusion.com/maui-controls/maui-funnel-charts) (SfFunnelChart) is used to create the beautiful funnel segments to analyze the various stages in a process, which are used in high-quality .NET MAUI applications. @@ -71,7 +71,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Funnel Charts +Funnel Charts not-applicable not-applicable full-support @@ -82,16 +82,16 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Cartesian Charts](https://help.syncfusion.com/maui/cartesian-charts/overview) for visualizing data using line, bar, and other chart types. -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for representing proportional data using pie and doughnut charts. -- [TreeMap](https://help.syncfusion.com/maui/treemap/overview) for displaying hierarchical and comparative data. -- [Pyramid Charts](https://help.syncfusion.com/maui/pyramid-charts/overview) for hierarchical or comparative data representation. +- [Cartesian Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for visualizing data using line, bar, and other chart types. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for representing proportional data using pie and doughnut charts. +- [TreeMap](https://help.syncfusion.com/chart-sdk/maui/treemap/overview) for displaying hierarchical and comparative data. +- [Pyramid Charts](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/overview) for hierarchical or comparative data representation. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started) shows a step‑by‑step guide to begin using the Funnel Chart control. -- [Appearance](https://help.syncfusion.com/maui/funnel-charts/appearance) explains how to customize chart appearance and behavior. -- [Data Labels](https://help.syncfusion.com/maui/funnel-charts/datalabels) helps configure data labels and segment display. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started) shows a step‑by‑step guide to begin using the Funnel Chart control. +- [Appearance](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/appearance) explains how to customize chart appearance and behavior. +- [Data Labels](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/datalabels) helps configure data labels and segment display. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/Funnel-Charts/Segment-Spacing.md b/chart-sdk/maui/Funnel-Charts/Segment-Spacing.md index e0e1248b7..afc1637a8 100644 --- a/chart-sdk/maui/Funnel-Charts/Segment-Spacing.md +++ b/chart-sdk/maui/Funnel-Charts/Segment-Spacing.md @@ -1,17 +1,17 @@ --- layout: post -title: Segment spacing in .NET MAUI Funnel Chart control Syncfusion -description: Learn how to set the gap between segments in .NET MAUI Funnel Chart (SfFunnelChart) using the GapRatio property. +title: Segment Spacing in .NET MAUI Funnel Chart | Syncfusion® +description: Segment spacing in .NET MAUI Funnel Chart controls the gap between funnel segments, improving readability and enhancing visual clarity. platform: chart-sdk control: SfFunnelChart documentation: ug --- -# Segment spacing in .NET MAUI Funnel Chart +# Segment Spacing in .NET MAUI Funnel Chart The gap between each segment in the funnel chart can be set using the [GapRatio](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfFunnelChart.html#Syncfusion_Maui_Charts_SfFunnelChart_GapRatio) property. The default value of the [GapRatio](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfFunnelChart.html#Syncfusion_Maui_Charts_SfFunnelChart_GapRatio) property is `0`, and its value ranges from `0` to `1`. This ratio represents the spacing relative to the segment height; a value of `0.2` means the gap is 20% of the segment's height. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Funnel-Charts/Tooltip.md b/chart-sdk/maui/Funnel-Charts/Tooltip.md index d937ad460..ddc46c206 100644 --- a/chart-sdk/maui/Funnel-Charts/Tooltip.md +++ b/chart-sdk/maui/Funnel-Charts/Tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Funnel Chart control | Syncfusion -description: This section explains about how to enable tooltip and its customization in Syncfusion® .NET MAUI Funnel Chart (SfFunnelChart) control +title: Tooltip in .NET MAUI Funnel Chart | Syncfusion® +description: Tooltip in .NET MAUI Funnel Chart displays detailed information for chart segments on interaction, helping users analyze and understand data easily. platform: chart-sdk control: SfFunnelChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The tooltip provides additional information when hovering over a funnel segment. By default, the segment's Y value will be shown in the tooltip. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/funnel-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Funnel Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/getting-started)** guide. ## Enable Tooltip diff --git a/chart-sdk/maui/Funnel-Charts/migration.md b/chart-sdk/maui/Funnel-Charts/migration.md index 27de1f3f0..52fa2b317 100644 --- a/chart-sdk/maui/Funnel-Charts/migration.md +++ b/chart-sdk/maui/Funnel-Charts/migration.md @@ -1,13 +1,13 @@ --- layout: post -title: Migration from Xamarin to .NET MAUI Funnel Chart control | Syncfusion -description: This section explains the features available in the .NET MAUI Chart (SfFunnelChart) control over Xamarin SfChart. +title: Migrate Xamarin.Forms SfChart to .NET MAUI Funnel Chart | Syncfusion® +description: Migrate from Xamarin.Forms SfChart to .NET MAUI Funnel Chart with updated APIs, improved performance, and modern funnel visualization features. platform: chart-sdk control: SfFunnelChart documentation: ug --- -# Migrate from Xamarin.Forms SfChart to .NET MAUI SfFunnelChart +# Migrate from Xamarin.Forms SfChart to .NET MAUI Funnel Chart The Funnel Chart was created from scratch using the upgraded APIs and performance of the .NET MAUI graphics library and framework layouts. However, minor code changes are required. Additionally, the single [SfChart](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfChart.XForms.SfChart.html) control has been split into five specialized chart controls in .NET MAUI for improved user experience and clarity. diff --git a/chart-sdk/maui/Polar-Charts/Appearance.md b/chart-sdk/maui/Polar-Charts/Appearance.md index c7dcefe82..25f794618 100644 --- a/chart-sdk/maui/Polar-Charts/Appearance.md +++ b/chart-sdk/maui/Polar-Charts/Appearance.md @@ -1,7 +1,7 @@ --- layout: post -title: Appearance in .NET MAUI Polar Chart control | Syncfusion -description: Learn here all about appearance customization in Syncfusion® .NET MAUI Polar Chart (SfPolarChart), including its elements, and more. +title: Appearance in .NET MAUI Polar Chart | Syncfusion® +description: Appearance in .NET MAUI Polar Chart allows customization of chart visuals using colors, palettes and styling options. platform: chart-sdk control: SfPolarChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The appearance of [SfPolarChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html) can be customized using the predefined brushes, custom brushes, and gradient, which allows for the enrichment of the application. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Default PaletteBrushes for chart diff --git a/chart-sdk/maui/Polar-Charts/Axis/Axislabels.md b/chart-sdk/maui/Polar-Charts/Axis/Axislabels.md index c768b383b..659c3b52b 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Axislabels.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Axislabels.md @@ -1,17 +1,17 @@ --- layout: post -title: Axis Labels in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about axis labels and their customization in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Axis Labels in .NET MAUI Polar Chart | Syncfusion® +description: Axis labels in .NET MAUI Polar Chart display category and value information along the axes, improving chart readability and data interpretation. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Axis labels in .NET MAUI Polar Chart +# Axis Labels in .NET MAUI Polar Chart Axis labels are used to display the units, measures, or category values of an axis in a user-friendly way. They are generated based on the range and the values bound to the [XBindingPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_XBindingPath) or [YBindingPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.XYDataSeries.html#Syncfusion_Maui_Charts_XYDataSeries_YBindingPath) properties of the series. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Positioning the labels diff --git a/chart-sdk/maui/Polar-Charts/Axis/Axisline.md b/chart-sdk/maui/Polar-Charts/Axis/Axisline.md index cc454dd0b..68641b8ad 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Axisline.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Axisline.md @@ -1,19 +1,19 @@ --- layout: post -title: Axis line in .NET MAUI Polar Chart control | Syncfusion -description: Learn here all about the chart axis line and its customization in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Axis Line in .NET MAUI Polar Chart | Syncfusion® +description: Axis line in .NET MAUI Polar Chart defines the visual representation of chart axes, helping organize data and improve chart readability. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Axis line in .NET MAUI Polar Chart +# Axis Line in .NET MAUI Polar Chart ## Customization The polar chart axis provides support for customizing the style of the axis line by defining the [AxisLineStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AxisLineStyle) property, as shown in the code sample below. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. N> The customization of axis lines using the `AxisLineStyle` property can only be applied to the secondary axis. diff --git a/chart-sdk/maui/Polar-Charts/Axis/Gridlines.md b/chart-sdk/maui/Polar-Charts/Axis/Gridlines.md index 147b28264..ae466aa46 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Gridlines.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Gridlines.md @@ -1,19 +1,19 @@ --- layout: post -title: Axis Grid Lines in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about the chart axis grid lines and their customization in Syncfusion® .NET MAUI Polar Chart (SfPolarChart). +title: Grid Lines in .NET MAUI Polar Chart | Syncfusion® +description: Grid lines in .NET MAUI Polar Chart provide visual references across the plot area, helping improve data readability and value comparison. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Grid lines in .NET MAUI Polar Chart +# Grid Lines in .NET MAUI Polar Chart ## Major grid lines By default, major gridlines are automatically added to the [ChartAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html) at its defined intervals. The visibility of the major gridlines can be controlled using the [ShowMajorGridLines](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_ShowMajorGridLines) property. The default value of [ShowMajorGridLines](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_ShowMajorGridLines) is `true`. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Polar-Charts/Axis/Overview.md b/chart-sdk/maui/Polar-Charts/Axis/Overview.md index 0835a99cc..b0af08ff3 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Overview.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Overview.md @@ -1,7 +1,7 @@ --- layout: post -title: About Axis in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about the chart axis and its key features in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Axis in .NET MAUI Polar Chart | Syncfusion® +description: Axis in .NET MAUI Polar Chart defines the chart coordinate system and supports customizable labels, lines, ticks, and titles for effective data visualization. platform: chart-sdk control: SfPolarChart documentation: ug diff --git a/chart-sdk/maui/Polar-Charts/Axis/Ticklines.md b/chart-sdk/maui/Polar-Charts/Axis/Ticklines.md index b203e3382..f196c7f4e 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Ticklines.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Ticklines.md @@ -1,19 +1,19 @@ --- layout: post -title: Axis Tick Line in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about the chart axis tick lines and their customization in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Tick Lines in .NET MAUI Polar Chart | Syncfusion® +description: Tick lines in .NET MAUI Polar Chart indicate axis intervals, helping users interpret scale values accurately and improve chart readability. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Tick lines in .NET MAUI Polar Chart +# Tick Lines in .NET MAUI Polar Chart Tick lines are the small lines drawn on the axis line to represent the axis labels. By default, tick lines are drawn outside of the axis. Minor tick lines can be added to the axis by defining the [MinorTicksPerInterval](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAxisBase.html#Syncfusion_Maui_Charts_RangeAxisBase_MinorTicksPerInterval) property. This property adds the minor tick lines to every interval based on the value. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. N> For category axis, minor tick lines are not applicable as it is rendered based on index positions. diff --git a/chart-sdk/maui/Polar-Charts/Axis/Title.md b/chart-sdk/maui/Polar-Charts/Axis/Title.md index e3beea1fc..5c06a554f 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Title.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Title.md @@ -1,17 +1,17 @@ --- layout: post -title: Title for axis in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about chart axis title, title style, title template, and its customization in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart). +title: Axis Title in .NET MAUI Polar Chart | Syncfusion® +description: Axis title in .NET MAUI Polar Chart provides descriptive text for chart axes, helping clarify data context and improve chart understanding. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Axis title in .NET MAUI Polar Chart +# Axis Title in .NET MAUI Polar Chart The [Title](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_Title) property is used to set the title for the chart axis. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. N> The polar chart supports a title for the secondary axis only. diff --git a/chart-sdk/maui/Polar-Charts/Axis/Types.md b/chart-sdk/maui/Polar-Charts/Axis/Types.md index f5439427b..d28d90cd2 100644 --- a/chart-sdk/maui/Polar-Charts/Axis/Types.md +++ b/chart-sdk/maui/Polar-Charts/Axis/Types.md @@ -1,13 +1,13 @@ --- layout: post -title: Axis types in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about axis types and their features in Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control and more. +title: Types of Axis in .NET MAUI Polar Chart | Syncfusion® +description: Types of axis in .NET MAUI Polar Chart support different axis configurations for representing category, numeric, and date-based data effectively. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Types of axis in .NET MAUI Polar Chart +# Types of Axis in .NET MAUI Polar Chart Polar chart supports the following types of chart axis: @@ -16,7 +16,7 @@ Polar chart supports the following types of chart axis: * DateTimeAxis * DateTimeCategoryAxis -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Numerical axis diff --git a/chart-sdk/maui/Polar-Charts/DataLabels.md b/chart-sdk/maui/Polar-Charts/DataLabels.md index cb34aff62..0f82929b3 100644 --- a/chart-sdk/maui/Polar-Charts/DataLabels.md +++ b/chart-sdk/maui/Polar-Charts/DataLabels.md @@ -1,7 +1,7 @@ --- layout: post -title: Data Labels in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about how to configure the data labels and their features in Syncfusion® .NET MAUI Polar Chart (SfPolarChart). +title: Data Labels in .NET MAUI Polar Chart | Syncfusion® +description: Data Labels in .NET MAUI Polar Chart display values directly on data points, helping users understand trends and interpret chart data more effectively. platform: chart-sdk control: SfPolarChart documentation: ug @@ -15,7 +15,7 @@ Each data label can be represented by the following: * Label - displays the segment label content at the (X, Y) point. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Enable Data Labels diff --git a/chart-sdk/maui/Polar-Charts/Exporting.md b/chart-sdk/maui/Polar-Charts/Exporting.md index fa2da8a2c..49f6fa696 100644 --- a/chart-sdk/maui/Polar-Charts/Exporting.md +++ b/chart-sdk/maui/Polar-Charts/Exporting.md @@ -1,7 +1,7 @@ --- layout: post -title: Exporting in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here how to export the chart view as an image and stream in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Exporting in .NET MAUI Polar Chart | Syncfusion® +description: Exporting in .NET MAUI Polar Chart enables charts to be saved as image files for sharing, reporting, and presentation purposes. platform: chart-sdk control: SfPolarChart documentation: ug @@ -13,7 +13,7 @@ documentation: ug You can export the chart view as an image in the desired file format using the [SaveAsImage](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_SaveAsImage_System_String_) method of [SfPolarChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html). The supported image formats are **JPEG and PNG**. By default, if you don't mention any image format with the filename, the chart view will be exported as an image in the PNG format. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. N> The chart view can be exported as an image only when the chart view is added to the visual tree. diff --git a/chart-sdk/maui/Polar-Charts/Getting-Started.md b/chart-sdk/maui/Polar-Charts/Getting-Started.md index 6a1097d7d..2792462c4 100644 --- a/chart-sdk/maui/Polar-Charts/Getting-Started.md +++ b/chart-sdk/maui/Polar-Charts/Getting-Started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Polar Chart Control | Syncfusion -description: This section explains about the getting started with Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Getting Started with .NET MAUI Polar Chart | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Polar Chart control. Explore setup, axis customization, chart types, and visualization features. platform: chart-sdk control: SfPolarChart documentation: ug diff --git a/chart-sdk/maui/Polar-Charts/Legend.md b/chart-sdk/maui/Polar-Charts/Legend.md index 67c481e35..2579f3f93 100644 --- a/chart-sdk/maui/Polar-Charts/Legend.md +++ b/chart-sdk/maui/Polar-Charts/Legend.md @@ -1,7 +1,7 @@ --- layout: post -title: Legend in .NET MAUI Polar Chart control | Syncfusion -description: This section explains about how to initialize legend and its customization in Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Legend in .NET MAUI Polar Chart | Syncfusion® +description: Legend in .NET MAUI Polar Chart displays series information with customizable styles, helping users identify and interpret chart data effectively. platform: chart-sdk control: SfPolarChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui polar chart, polar-chart, chart legend, legend-wrap, legend The [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_Legend) provides a list of polar series, helping to identify the corresponding data series in the chart. Here's a detailed guide on how to define and customize the legend in the polar chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Defining the legend diff --git a/chart-sdk/maui/Polar-Charts/Liquid-Glass-Effect.md b/chart-sdk/maui/Polar-Charts/Liquid-Glass-Effect.md index d2b30134e..c19267e4b 100644 --- a/chart-sdk/maui/Polar-Charts/Liquid-Glass-Effect.md +++ b/chart-sdk/maui/Polar-Charts/Liquid-Glass-Effect.md @@ -1,7 +1,7 @@ --- layout: post -title: Liquid Glass Effect in .NET MAUI Polar Chart control | Syncfusion -description: Learn how to enable and customize the Liquid Glass visual effect in Syncfusion® .NET MAUI Polar Chart (SfPolarChart) for stunning UI.. +title: Liquid Glass Effect in .NET MAUI Polar Chart | Syncfusion® +description: Liquid Glass Effect in .NET MAUI Polar Chart applies a sleek glass-like visual style to chart elements, enhancing chart appearance and visual appeal. platform: chart-sdk control: SfPolarChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui chart, cupertino theme, glass effect, maui cupertino chart, The Liquid Glass Effect is a modern design style that provides a sleek, minimalist appearance with clean lines, subtle visual effects, and elegant styling. It features smooth rounded corners and sophisticated visual treatments that create a polished, professional look for your charts. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. N> The liquid glass effect is supported only on `.NET 10` and on `iOS` and `macOS` versions 26 or later diff --git a/chart-sdk/maui/Polar-Charts/Overview.md b/chart-sdk/maui/Polar-Charts/Overview.md index 3fce43d98..6f4d8103d 100644 --- a/chart-sdk/maui/Polar-Charts/Overview.md +++ b/chart-sdk/maui/Polar-Charts/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about the introduction of Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control with key features and more. +title: About Syncfusion .NET MAUI Polar Chart Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Polar Chart control, including axis customization, data labels, legends, and visualization features. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Overview of .NET MAUI Polar Chart +# About Syncfusion® .NET MAUI Polar Chart Control The Syncfusion® [.NET MAUI Polar Chart](https://www.syncfusion.com/maui-controls/maui-polar-charts) allows for the creation of visually stunning polar series for data visualization in high-quality applications. This chart type, commonly known as a radar or spider chart, effectively represents data in terms of values and angles. @@ -72,7 +72,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Polar Charts +Polar Charts not-applicable not-applicable full-support @@ -83,15 +83,15 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Cartesian Charts](https://help.syncfusion.com/maui/cartesian-charts/overview) for visualizing data using line, column, and bar charts. -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for representing proportional data using pie and doughnut charts. -- [Funnel Charts](https://help.syncfusion.com/maui/funnel-charts/overview) for visualizing process stages and conversion flows. +- [Cartesian Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for visualizing data using line, column, and bar charts. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for representing proportional data using pie and doughnut charts. +- [Funnel Charts](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/overview) for visualizing process stages and conversion flows. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started) shows a step‑by‑step guide to begin using the Polar Chart control. -- [Chart Types](https://help.syncfusion.com/maui/polar-charts/polararea) explores different polar chart types. -- [Customization](https://help.syncfusion.com/maui/polar-charts/appearance) explains how to customize appearance and interaction settings. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started) shows a step‑by‑step guide to begin using the Polar Chart control. +- [Chart Types](https://help.syncfusion.com/chart-sdk/maui/polar-charts/polararea) explores different polar chart types. +- [Customization](https://help.syncfusion.com/chart-sdk/maui/polar-charts/appearance) explains how to customize appearance and interaction settings. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/Polar-Charts/PolarArea.md b/chart-sdk/maui/Polar-Charts/PolarArea.md index 5dd808222..0618dda1e 100644 --- a/chart-sdk/maui/Polar-Charts/PolarArea.md +++ b/chart-sdk/maui/Polar-Charts/PolarArea.md @@ -1,7 +1,7 @@ --- layout: post -title: Polar Area Chart in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about the Polar area chart type and its features in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Polar Area Chart in .NET MAUI Polar Chart | Syncfusion® +description: Polar Area Chart in .NET MAUI Polar Chart displays data as proportional segments in a polar coordinate system, enabling effective comparison of values. platform: chart-sdk control: SfPolarChart documentation: ug @@ -13,7 +13,7 @@ documentation: ug To display an area series in a polar chart, instantiate the [PolarAreaSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PolarAreaSeries.html) and include it in the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html#Syncfusion_Maui_Charts_SfPolarChart_Series) collection property of [SfPolarChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Polar-Charts/PolarLine.md b/chart-sdk/maui/Polar-Charts/PolarLine.md index 3220ef3d2..4743cd2d7 100644 --- a/chart-sdk/maui/Polar-Charts/PolarLine.md +++ b/chart-sdk/maui/Polar-Charts/PolarLine.md @@ -1,7 +1,7 @@ --- layout: post -title: Polar Line Chart in .NET MAUI Polar Chart Control | Syncfusion -description: Learn here all about the Polar line chart type and its features in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Polar Line Chart in .NET MAUI Polar Chart | Syncfusion® +description: Polar Line Chart in .NET MAUI Polar Chart connects data points using lines in a polar coordinate system, helping visualize trends and patterns effectively. platform: chart-sdk control: SfPolarChart documentation: ug @@ -13,7 +13,7 @@ documentation: ug To display a line series in a polar chart, instantiate the [PolarLineSeries](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PolarLineSeries.html) and include it in the [Series](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html#Syncfusion_Maui_Charts_SfPolarChart_Series) collection property of [SfPolarChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Polar-Charts/RenderingPosition.md b/chart-sdk/maui/Polar-Charts/RenderingPosition.md index c65698f23..b56305d44 100644 --- a/chart-sdk/maui/Polar-Charts/RenderingPosition.md +++ b/chart-sdk/maui/Polar-Charts/RenderingPosition.md @@ -1,7 +1,7 @@ --- layout: post -title: Rendering Position in .NET MAUI Polar Chart control | Syncfusion -description: Learn here all about the rendering position of the axis in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Rendering Position in .NET MAUI Polar Chart | Syncfusion® +description: Rendering position in .NET MAUI Polar Chart controls how series are placed relative to axis intervals, improving data presentation and chart readability. platform: chart-sdk control: SfPolarChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The rendering position in a .NET MAUI Polar Chart defines the starting angle from which the chart series is drawn on the polar coordinate system. By adjusting the rendering position, you can rotate the entire chart visualization to start from different angular points (0°, 90°, 180°, or 270°). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Start Angle diff --git a/chart-sdk/maui/Polar-Charts/Tooltip.md b/chart-sdk/maui/Polar-Charts/Tooltip.md index 5af55ece0..04c13d419 100644 --- a/chart-sdk/maui/Polar-Charts/Tooltip.md +++ b/chart-sdk/maui/Polar-Charts/Tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Polar Chart control | Syncfusion -description: Learn here all about how to enable tooltips and customize them in the Syncfusion® .NET MAUI Polar Chart (SfPolarChart) control. +title: Tooltip in .NET MAUI Polar Chart | Syncfusion® +description: Tooltip in .NET MAUI Polar Chart displays detailed information for data points on interaction, helping users analyze and understand chart data easily. platform: chart-sdk control: SfPolarChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug A tooltip is used to display information or metadata of the tapped segment. The Polar chart provides tooltip support for all series. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/polar-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfPolarChart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/polar-charts/getting-started)** guide. ## Define Tooltip diff --git a/chart-sdk/maui/Polar-Charts/migration.md b/chart-sdk/maui/Polar-Charts/migration.md index 0bcd975d9..91907be8e 100644 --- a/chart-sdk/maui/Polar-Charts/migration.md +++ b/chart-sdk/maui/Polar-Charts/migration.md @@ -1,13 +1,13 @@ --- layout: post -title: Migration from Xamarin to .NET MAUI Polar Chart control | Syncfusion -description: Learn here all about the features available in the .NET MAUI Polar Chart (SfPolarChart) control over Xamarin SfChart. +title: Migrate Xamarin.Forms SfChart to .NET MAUI Polar Chart | Syncfusion® +description: Migrate from Xamarin.Forms SfChart to .NET MAUI Polar Chart with updated APIs, improved performance, and modern features for polar data visualization. platform: chart-sdk control: SfPolarChart documentation: ug --- -# Migrate from Xamarin.Forms SfChart to .NET MAUI SfPolarChart +# Migrate from Xamarin.Forms SfChart to .NET MAUI Polar Chart The Polar Chart was created from the scratch using the upgraded APIs and performance of the .NET MAUI graphics library and framework layouts. However, a minor code change is required. In addition, [SfChart](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfChart.XForms.SfChart.html) has been divided into five chart controls in .NET MAUI for a better user experience and understanding. diff --git a/chart-sdk/maui/Pyramid-Charts/Appearance.md b/chart-sdk/maui/Pyramid-Charts/Appearance.md index e162a2f28..48e7b454d 100644 --- a/chart-sdk/maui/Pyramid-Charts/Appearance.md +++ b/chart-sdk/maui/Pyramid-Charts/Appearance.md @@ -1,7 +1,7 @@ --- layout: post -title: Appearance in .NET MAUI Pyramid Chart control | Syncfusion -description: Learn here all about appearance customization in .NET MAUI Pyramid Chart (SfPyramidChart) control, its elements and more. +title: Appearance in .NET MAUI Pyramid Chart | Syncfusion® +description: Appearance in .NET MAUI Pyramid Chart allows you to customize visuals using colors, palettes and styling options. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -12,7 +12,7 @@ keywords: maui pyramid chart, appearance, palette, gradient, title, customizatio The appearance of the [SfPyramidChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPyramidChart.html) can be customized by using the custom palettes and gradients that enhance the visual appeal of the application. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. ## Add a title diff --git a/chart-sdk/maui/Pyramid-Charts/DataLabels.md b/chart-sdk/maui/Pyramid-Charts/DataLabels.md index a67636fe7..48247e3d6 100644 --- a/chart-sdk/maui/Pyramid-Charts/DataLabels.md +++ b/chart-sdk/maui/Pyramid-Charts/DataLabels.md @@ -1,7 +1,7 @@ --- layout: post -title: Data Labels in .NET MAUI Pyramid Chart control | Syncfusion -description: Learn how to configure, customize, and format data labels in the Syncfusion® .NET MAUI Pyramid Chart (SfPyramidChart) control. +title: Data Labels in .NET MAUI Pyramid Chart | Syncfusion® +description: Data Labels in .NET MAUI Pyramid Chart display values directly on chart segments, helping users understand and interpret data more effectively. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui pyramid chart, data labels, label customization, label place Data labels are used to display values related to a chart segment. Values from data points (x, y) or other custom properties from a data source can be displayed. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. ## Enable data labels diff --git a/chart-sdk/maui/Pyramid-Charts/Exporting.md b/chart-sdk/maui/Pyramid-Charts/Exporting.md index 5494e4847..8adfa280a 100644 --- a/chart-sdk/maui/Pyramid-Charts/Exporting.md +++ b/chart-sdk/maui/Pyramid-Charts/Exporting.md @@ -1,7 +1,7 @@ --- layout: post -title: Exporting in .NET MAUI Pyramid Chart control | Syncfusion -description: Learn how to export the Syncfusion® .NET MAUI Pyramid Chart (SfPyramidChart) control as an image and stream. +title: Exporting in .NET MAUI Pyramid Chart | Syncfusion® +description: Exporting in .NET MAUI Pyramid Chart enables you to save charts as image files for sharing, reporting, and presentation purposes. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -10,7 +10,7 @@ keywords: .net maui pyramid chart, export chart, save image, export stream, png, # Exporting in .NET MAUI Pyramid Chart -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. ## Export as an image diff --git a/chart-sdk/maui/Pyramid-Charts/Getting-Started.md b/chart-sdk/maui/Pyramid-Charts/Getting-Started.md index e703448c5..a88d119a2 100644 --- a/chart-sdk/maui/Pyramid-Charts/Getting-Started.md +++ b/chart-sdk/maui/Pyramid-Charts/Getting-Started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Pyramid Chart control | Syncfusion -description: Learn here all about getting started with Syncfusion® .NET MAUI Pyramid Chart (SfPyramidChart) control, its elements, and more. +title: Getting Started with .NET MAUI Pyramid Chart | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Pyramid Chart control. Explore setup, customization, data labels, and visualization features. keywords: maui pyramid chart, getting started, setup, project creation, initialization platform: chart-sdk control: SfPyramidChart diff --git a/chart-sdk/maui/Pyramid-Charts/Legend.md b/chart-sdk/maui/Pyramid-Charts/Legend.md index 84add2cf0..c4827f450 100644 --- a/chart-sdk/maui/Pyramid-Charts/Legend.md +++ b/chart-sdk/maui/Pyramid-Charts/Legend.md @@ -1,7 +1,7 @@ --- layout: post -title: Legend in .NET MAUI Pyramid Chart control | Syncfusion -description: This section explains how to initialize legend and customize it in Syncfusion® .NET MAUI Pyramid Chart (SfPyramidChart) control. +title: Legend in .NET MAUI Pyramid Chart | Syncfusion® +description: Legend in .NET MAUI Pyramid Chart displays chart segment information with customizable styles, helping users identify and understand data categories. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui pyramid chart, legend, chart legend, legend items, legend cu The [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_Legend) provides a list of data points, helping to identify the corresponding pyramid segments in the chart. Here is a detailed guide on how to define and customize the legend in the pyramid chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. ## Defining the legend diff --git a/chart-sdk/maui/Pyramid-Charts/Liquid-Glass-Effect.md b/chart-sdk/maui/Pyramid-Charts/Liquid-Glass-Effect.md index 3460f7733..b3428a9e4 100644 --- a/chart-sdk/maui/Pyramid-Charts/Liquid-Glass-Effect.md +++ b/chart-sdk/maui/Pyramid-Charts/Liquid-Glass-Effect.md @@ -1,7 +1,7 @@ --- layout: post -title: Liquid Glass Effect in .NET MAUI Pyramid Chart control | Syncfusion -description: Learn how to enable and customize the Liquid Glass visual effect in Syncfusion® .NET MAUI Pyramid Chart (SfPyramidChart) for stunning UI. +title: Liquid Glass Effect in .NET MAUI Pyramid Chart | Syncfusion® +description: Liquid Glass Effect in .NET MAUI Pyramid Chart applies a sleek glass-like visual style to chart segments, enhancing chart appearance and user experience. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -13,7 +13,7 @@ keywords: .net maui pyramid chart, glass effect, liquid glass effect, pyramid ch The Liquid Glass Effect is a modern design style that provides a sleek, minimalist appearance with clean lines, subtle visual effects, and elegant styling. It features smooth rounded corners and sophisticated visual treatments that create a polished, professional look for your charts. N> **Prerequisite:** -- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. - To use **SfGlassEffectView**, ensure that the Syncfusion.Maui.Core package is installed and import the Syncfusion.Maui.Core namespace. N> The liquid glass effect is supported with `.NET 10` and on iOS and macOS versions 26 or later. diff --git a/chart-sdk/maui/Pyramid-Charts/Orientation.md b/chart-sdk/maui/Pyramid-Charts/Orientation.md index 825e47a9a..f97ebfb54 100644 --- a/chart-sdk/maui/Pyramid-Charts/Orientation.md +++ b/chart-sdk/maui/Pyramid-Charts/Orientation.md @@ -1,7 +1,7 @@ --- layout: post -title: Orientation in .NET MAUI Pyramid Chart control (Syncfusion) -description: Learn how to change the rendering direction of segments in .NET MAUI Pyramid Chart (SfPyramidChart) using the Orientation property. +title: Orientation in .NET MAUI Pyramid Chart | Syncfusion® +description: Orientation in .NET MAUI Pyramid Chart allows you to display the pyramid vertically or horizontally, improving layout flexibility and data presentation. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The rendering direction of the pyramid chart can be changed using the [Orientation](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPyramidChart.html#Syncfusion_Maui_Charts_SfPyramidChart_Orientation) property. The default value of this property is `Vertical`, which arranges segments from top to bottom. It can be set to `Horizontal` to render segments from right to left. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Pyramid-Charts/Overview.md b/chart-sdk/maui/Pyramid-Charts/Overview.md index bed8c695c..2a2c69b75 100644 --- a/chart-sdk/maui/Pyramid-Charts/Overview.md +++ b/chart-sdk/maui/Pyramid-Charts/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Pyramid Chart Control | Syncfusion -description: Learn here all about introduction of Syncfusion® .NET MAUI Chart(SfPyramidChart) control with key features and more. +title: About Syncfusion .NET MAUI Pyramid Chart Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Pyramid Chart control, including customization options, data labels, legends, and visualization features. platform: chart-sdk control: SfPyramidChart documentation: ug --- -# .NET MAUI Pyramid Chart Overview +# About Syncfusion® .NET MAUI Pyramid Chart Control Syncfusion® .NET MAUI Chart ([SfPyramidChart]((https://www.syncfusion.com/maui-controls/maui-pyramid-charts))) is used to create the beautiful pyramid segments to visualize the proportions of a total in hierarchies, which are used in high-quality .NET MAUI applications. As a single series chart without an axis. Data is shown as percentages of a total (The sum of the parts makes up the whole). @@ -71,7 +71,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Pyramid Charts +Pyramid Charts not-applicable not-applicable full-support @@ -82,15 +82,15 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Funnel Charts](https://help.syncfusion.com/maui/funnel-charts/overview) for visualizing process stages and conversion flows using funnel charts. -- [Circular Charts](https://help.syncfusion.com/maui/cartesian-charts/overview) for representing proportional data using pie and doughnut charts. -- [Cartesian Charts](https://help.syncfusion.com/maui/cartesian-charts/getting-started) for visualizing data trends and comparisons using axis-based charts. +- [Funnel Charts](https://help.syncfusion.com/chart-sdk/maui/funnel-charts/overview) for visualizing process stages and conversion flows using funnel charts. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for representing proportional data using pie and doughnut charts. +- [Cartesian Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/getting-started) for visualizing data trends and comparisons using axis-based charts. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started) shows a step‑by‑step guide to begin using the Pyramid Chart control. -- [Customization](https://help.syncfusion.com/maui/pyramid-charts/appearance) explains how to customize chart appearance and behavior. -- [Labels](https://help.syncfusion.com/maui/pyramid-charts/datalabels) helps configure data labels and segment details. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started) shows a step‑by‑step guide to begin using the Pyramid Chart control. +- [Customization](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/appearance) explains how to customize chart appearance and behavior. +- [Labels](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/datalabels) helps configure data labels and segment details. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/Pyramid-Charts/Segment-Spacing.md b/chart-sdk/maui/Pyramid-Charts/Segment-Spacing.md index d564ae2c7..79fa65b23 100644 --- a/chart-sdk/maui/Pyramid-Charts/Segment-Spacing.md +++ b/chart-sdk/maui/Pyramid-Charts/Segment-Spacing.md @@ -1,17 +1,17 @@ --- layout: post -title: Segment spacing in .NET MAUI Pyramid Chart control (Syncfusion) -description: Learn how to set the gap between segments in .NET MAUI Pyramid Chart (SfPyramidChart) using the GapRatio property. +title: Segment Spacing in .NET MAUI Pyramid Chart | Syncfusion® +description: Segment spacing in .NET MAUI Pyramid Chart lets you control the gap between pyramid segments, improving chart readability and visual clarity. platform: chart-sdk control: SfPyramidChart documentation: ug --- -# Segment spacing in .NET MAUI Pyramid Chart +# Segment Spacing in .NET MAUI Pyramid Chart The gap between each segment in the pyramid chart can be set using the [GapRatio](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPyramidChart.html#Syncfusion_Maui_Charts_SfPyramidChart_GapRatio) property. The default value of the [GapRatio](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPyramidChart.html#Syncfusion_Maui_Charts_SfPyramidChart_GapRatio) property is `0`, and its value ranges from `0` to `1`. This ratio represents the spacing relative to the segment height; a value of `0.2` means the gap is 20% of the segment's height. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/Pyramid-Charts/Tooltip.md b/chart-sdk/maui/Pyramid-Charts/Tooltip.md index df52262a0..0ac49a5f2 100644 --- a/chart-sdk/maui/Pyramid-Charts/Tooltip.md +++ b/chart-sdk/maui/Pyramid-Charts/Tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Pyramid Chart control | Syncfusion -description: This section explains how to enable and customize the tooltip in Syncfusion® .NET MAUI Pyramid Chart (SfPyramidChart) control +title: Tooltip in .NET MAUI Pyramid Chart | Syncfusion® +description: Tooltip in .NET MAUI Pyramid Chart displays detailed information for chart segments on interaction, helping users analyze and understand data easily. platform: chart-sdk control: SfPyramidChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The tooltip provides additional information when hovering over a pyramid segment. By default, the segment's Y value will be shown in the tooltip. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/pyramid-charts/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Pyramid Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/pyramid-charts/getting-started)** guide. ## Enable Tooltip diff --git a/chart-sdk/maui/Pyramid-Charts/migration.md b/chart-sdk/maui/Pyramid-Charts/migration.md index b4502a2cc..8eb2b4fc3 100644 --- a/chart-sdk/maui/Pyramid-Charts/migration.md +++ b/chart-sdk/maui/Pyramid-Charts/migration.md @@ -1,13 +1,13 @@ --- layout: post -title: Migration from Xamarin to .NET MAUI Pyramid Chart control | Syncfusion -description: This section explains the features available in the .NET MAUI Pyramid Chart (SfPyramidChart) control over Xamarin SfChart. +title: Migrate Xamarin.Forms SfChart to .NET MAUI Pyramid Chart | Syncfusion® +description: Migrate from Xamarin.Forms SfChart to .NET MAUI Pyramid Chart with updated APIs, improved performance, and modern features for pyramid data visualization. platform: chart-sdk control: SfPyramidChart documentation: ug --- -# Migrate from Xamarin.Forms SfChart to .NET MAUI SfPyramidChart +# Migrate from Xamarin.Forms SfChart to .NET MAUI Pyramid Chart The Pyramid Chart was created from scratch using the upgraded APIs and performance of the .NET MAUI graphics library and framework layouts. However, minor code changes are required. Additionally, the single [SfChart](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfChart.XForms.SfChart.html) control has been split into five specialized chart controls in .NET MAUI for improved user experience and clarity. diff --git a/chart-sdk/maui/SunburstChart/Appearance.md b/chart-sdk/maui/SunburstChart/Appearance.md index fb990dd0e..754e78359 100644 --- a/chart-sdk/maui/SunburstChart/Appearance.md +++ b/chart-sdk/maui/SunburstChart/Appearance.md @@ -1,7 +1,7 @@ --- layout: post -title: Appearance in .NET MAUI Sunburst Chart control | Syncfusion -description: Learn here all about Sunburst Chart appearance customization in Syncfusion® .NET MAUI Sunburst Chart control. +title: Appearance in .NET MAUI Sunburst Chart | Syncfusion® +description: Appearance in .NET MAUI Sunburst Chart allows customization of chart visuals using colors, palettes and styling options. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The appearance of the [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html) can be customized using properties such as Title, Angle, Radius, Inner radius, and Stroke, which allow you to enhance the visual presentation of your application. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. ## Add a Title The title of the sunburst chart provides quick information to the user about the data being plotted in the chart. The [Title](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_Title) property accepts a `View` and is used to set a title for the sunburst chart. The following example uses a `Label` as the title within a `ContentPage`. diff --git a/chart-sdk/maui/SunburstChart/CenterView.md b/chart-sdk/maui/SunburstChart/CenterView.md index 08141942b..44fe906f2 100644 --- a/chart-sdk/maui/SunburstChart/CenterView.md +++ b/chart-sdk/maui/SunburstChart/CenterView.md @@ -1,17 +1,17 @@ --- layout: post -title: Center view in .NET MAUI Sunburst Chart control | Syncfusion -description: This section explains how to add a center view in the Syncfusion® .NET MAUI Sunburst Chart control. +title: Center View in .NET MAUI Sunburst Chart | Syncfusion® +description: Center view in .NET MAUI Sunburst Chart displays custom content at the chart center, providing additional context and enhancing data presentation. platform: chart-sdk control: SfSunburstChart documentation: ug --- -# Center view in .NET MAUI Sunburst Chart +# Center View in .NET MAUI Sunburst Chart Any view can be added to the center of the sunburst chart using the [CenterView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_CenterView) property of [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html). The view placed in the center of the chart is useful for displaying summary or contextual information about the sunburst chart. The binding context of the CenterView is the `SfSunburstChart` instance, so any binding in the CenterView resolves against the chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. ## Add a center view diff --git a/chart-sdk/maui/SunburstChart/DataLabels.md b/chart-sdk/maui/SunburstChart/DataLabels.md index 7da71a0aa..c30a96222 100644 --- a/chart-sdk/maui/SunburstChart/DataLabels.md +++ b/chart-sdk/maui/SunburstChart/DataLabels.md @@ -1,7 +1,7 @@ --- layout: post -title: Data label in .NET MAUI Sunburst Chart control | Syncfusion -description: This section explains about how to configure the data labels and its features in .NET MAUI Sunburst Chart. +title: Data Labels in .NET MAUI Sunburst Chart | Syncfusion® +description: Data Labels in .NET MAUI Sunburst Chart display values directly on chart segments, helping users understand hierarchical data more effectively. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -11,11 +11,11 @@ documentation: ug Data labels are used to display information about segments of the sunburst chart. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. ## Enable Data Labels -Data labels are enabled and disabled using the [ShowLabels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ShowLabels) property. The default value of the ShowLabels property is `False`. For data labels to appear, the chart must also be bound to data via the [ItemsSource](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ItemsSource), [ValueMemberPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ValueMemberPath), and [Levels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_Levels) properties. See the [Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started) topic for setup details. +Data labels are enabled and disabled using the [ShowLabels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ShowLabels) property. The default value of the ShowLabels property is `False`. For data labels to appear, the chart must also be bound to data via the [ItemsSource](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ItemsSource), [ValueMemberPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ValueMemberPath), and [Levels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_Levels) properties. See the [Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started) topic for setup details. The following code explains how to enable data labels. diff --git a/chart-sdk/maui/SunburstChart/DrillDown.md b/chart-sdk/maui/SunburstChart/DrillDown.md index 9c9c98659..4bac36e0b 100644 --- a/chart-sdk/maui/SunburstChart/DrillDown.md +++ b/chart-sdk/maui/SunburstChart/DrillDown.md @@ -1,7 +1,7 @@ --- layout: post -title: Drill Down in .NET MAUI Sunburst Chart control | Syncfusion -description: This section explains how to enable and customize drill-down toolbar in the Syncfusion® .NET MAUI Sunburst Chart control. +title: Drill Down in .NET MAUI Sunburst Chart | Syncfusion® +description: Drill Down in .NET MAUI Sunburst Chart enables interactive navigation through hierarchical data, allowing deeper exploration of chart segments and levels. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug Drill-down provides better visualization of hierarchical data by allowing large datasets to be visualized as simplified views. Users can drill down into each segment level. The Sunburst Chart provides animation along with drill-down support. Double-tapping (or double-clicking) a segment initiates the drill-down operation. A toolbar is enabled during drill-down, allowing zoom-back and reset operations. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. ## Enable Drill Down diff --git a/chart-sdk/maui/SunburstChart/Getting-Started.md b/chart-sdk/maui/SunburstChart/Getting-Started.md index bde931647..a56f6085f 100644 --- a/chart-sdk/maui/SunburstChart/Getting-Started.md +++ b/chart-sdk/maui/SunburstChart/Getting-Started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Sunburst Chart control | Syncfusion -description: Learn here all about getting started with Syncfusion® .NET MAUI Sunburst Chart control, its elements, and more. +title: Getting Started with .NET MAUI Sunburst Chart | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Sunburst Chart control. Explore setup, drill-down, customization, and data visualization features. platform: chart-sdk control: SfSunburstChart documentation: ug diff --git a/chart-sdk/maui/SunburstChart/Legend.md b/chart-sdk/maui/SunburstChart/Legend.md index df417d539..0c926f34c 100644 --- a/chart-sdk/maui/SunburstChart/Legend.md +++ b/chart-sdk/maui/SunburstChart/Legend.md @@ -1,7 +1,7 @@ --- layout: post -title: Legend in .NET MAUI Sunburst Chart control | Syncfusion -description: Learn here all about Legend in Syncfusion® .NET MAUI Sunburst Chart control, its elements, and more. +title: Legend in .NET MAUI Sunburst Chart | Syncfusion® +description: Legend in .NET MAUI Sunburst Chart displays chart segment information with customizable styles, helping users identify and interpret hierarchical data. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug The legend provides information about the data points (segments) displayed in the sunburst chart. The [Legend](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_Legend) property of the [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html) is used to enable the legend. By default, this property is `null`. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. ## Enable a Legend diff --git a/chart-sdk/maui/SunburstChart/Liquid-Glass-Effect.md b/chart-sdk/maui/SunburstChart/Liquid-Glass-Effect.md index 2d62b3508..083f0c589 100644 --- a/chart-sdk/maui/SunburstChart/Liquid-Glass-Effect.md +++ b/chart-sdk/maui/SunburstChart/Liquid-Glass-Effect.md @@ -1,7 +1,7 @@ --- layout: post -title: Liquid Glass Effect in .NET MAUI Sunburst Chart control | Syncfusion -description: Learn how to enable and customize the Liquid Glass visual effect in Syncfusion® .NET MAUI Sunburst Chart (SfSunburstChart) for stunning UI. +title: Liquid Glass Effect in .NET MAUI Sunburst Chart | Syncfusion® +description: Liquid Glass Effect in .NET MAUI Sunburst Chart applies a sleek glass-like visual style to chart segments, enhancing chart appearance and visual appeal. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -14,7 +14,7 @@ The liquid glass effect is a modern design style that provides a sleek, minimali N> **Prerequisite:** -- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +- Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. - To use **SfGlassEffectView**, ensure that the Syncfusion.Maui.Core package is installed and import the Syncfusion.Maui.Core namespace. N> The liquid glass effect is supported only on `.NET 10` and on `iOS 26` and `macOS 26` or later. Enabling these properties on other platforms (such as Windows or Android) has no effect; the chart renders normally without the glass appearance. diff --git a/chart-sdk/maui/SunburstChart/Migration.md b/chart-sdk/maui/SunburstChart/Migration.md index 2fc5941d9..0a4be2568 100644 --- a/chart-sdk/maui/SunburstChart/Migration.md +++ b/chart-sdk/maui/SunburstChart/Migration.md @@ -1,13 +1,13 @@ --- layout: post -title: Xamarin to .NET MAUI Sunburst Chart Migration | Syncfusion -description: This section explains the .NET MAUI SfSunburstChart features relative to the Xamarin SfSunburstChart control. +title: Migrate Xamarin.Forms Sunburst to .NET MAUI Sunburst | Syncfusion® +description: Migrate from Xamarin.Forms Sunburst Chart to .NET MAUI Sunburst Chart with updated APIs, improved performance, and modern hierarchical visualization features. platform: chart-sdk control: SfSunburstChart documentation: ug --- -# Migrate from Xamarin.Forms SunburstChart to .NET MAUI SunburstChart +# Migrate from Xamarin.Forms Sunburst Chart to .NET MAUI Sunburst Chart The SfSunburstChart was created from scratch using the upgraded APIs and performance of the .NET MAUI graphics library and framework layouts. However, to maintain API naming consistency in .NET MAUI SfSunburstChart, we renamed some of the APIs. The changes in APIs from Xamarin SfSunburstChart to .NET MAUI SfSunburstChart are detailed below. @@ -584,7 +584,7 @@ this.Content = sunburstChart; ### Selection -Selection in Xamarin was enabled by assigning a [SunburstSelectionSettings](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfSunburstChart.XForms.SunburstSelectionSettings.html) instance to the chart. In .NET MAUI, the [SelectionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_SelectionSettings) property of [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html) accepts the [SunburstSelectionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html) class. The [SelectionType](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfSunburstChart.XForms.SunburstSelectionSettings.html) property in Xamarin is renamed to [Type](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html#Syncfusion_Maui_SunburstChart_SunburstSelectionSettings_Type), and the [SelectionMode](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfSunburstChart.XForms.SunburstSelectionSettings.html) property is renamed to [DisplayMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html#Syncfusion_Maui_SunburstChart_SunburstSelectionSettings_DisplayMode). For the full list of selection APIs, refer to the [Selection](https://help.syncfusion.com/maui/sunburstchart/selection) topic. +Selection in Xamarin was enabled by assigning a [SunburstSelectionSettings](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfSunburstChart.XForms.SunburstSelectionSettings.html) instance to the chart. In .NET MAUI, the [SelectionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_SelectionSettings) property of [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html) accepts the [SunburstSelectionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html) class. The [SelectionType](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfSunburstChart.XForms.SunburstSelectionSettings.html) property in Xamarin is renamed to [Type](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html#Syncfusion_Maui_SunburstChart_SunburstSelectionSettings_Type), and the [SelectionMode](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfSunburstChart.XForms.SunburstSelectionSettings.html) property is renamed to [DisplayMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html#Syncfusion_Maui_SunburstChart_SunburstSelectionSettings_DisplayMode). For the full list of selection APIs, refer to the [Selection](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/selection) topic. @@ -698,7 +698,7 @@ this.Content = sunburstChart;
### Drill down -Drill down in Xamarin was enabled by setting the `EnableDrillDown` property. In .NET MAUI, the [EnableDrillDown](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_EnableDrillDown) property enables the same feature, and the drill-down toolbar appearance and position can be customized using the [ToolbarSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ToolbarSettings) property of [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html). For the full list of drill-down APIs, refer to the [Drill Down](https://help.syncfusion.com/maui/sunburstchart/drilldown) topic. +Drill down in Xamarin was enabled by setting the `EnableDrillDown` property. In .NET MAUI, the [EnableDrillDown](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_EnableDrillDown) property enables the same feature, and the drill-down toolbar appearance and position can be customized using the [ToolbarSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ToolbarSettings) property of [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html). For the full list of drill-down APIs, refer to the [Drill Down](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/drilldown) topic. diff --git a/chart-sdk/maui/SunburstChart/Overview.md b/chart-sdk/maui/SunburstChart/Overview.md index 976f4c328..c73128878 100644 --- a/chart-sdk/maui/SunburstChart/Overview.md +++ b/chart-sdk/maui/SunburstChart/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Sunburst Chart Control | Syncfusion -description: Learn here all about introduction of Syncfusion® .NET MAUI SunburstChart control with key features and more +title: About Syncfusion® .NET MAUI Sunburst Chart Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Sunburst Chart control, including drill-down, customization, and data visualization features. platform: chart-sdk control: SfSunburstChart documentation: ug --- -# .NET MAUI Sunburst Chart Overview +# About Syncfusion® .NET MAUI Sunburst Chart Control The Syncfusion® .NET MAUI Sunburst Chart ([SfSunburstChart](https://www.syncfusion.com/maui-controls/maui-sunburst-charts)) is used to visualize hierarchical data structures. The chart organizes data in multiple levels, where each level represents a different category or subcategory. This visualization helps users understand relationships and dependencies within the data in an intuitive and user-friendly way. @@ -75,7 +75,7 @@ The following table summarizes the globalization support available in this contr - + @@ -86,15 +86,15 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [TreeMap](https://help.syncfusion.com/maui/treemap/overview) for visualizing hierarchical data using rectangular layouts. -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for representing proportional data using pie and doughnut charts. -- [Cartesian Charts](https://help.syncfusion.com/maui/cartesian-charts/overview) for visualizing tabular data trends and comparisons. +- [TreeMap](https://help.syncfusion.com/chart-sdk/maui/treemap/overview) for visualizing hierarchical data using rectangular layouts. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for representing proportional data using pie and doughnut charts. +- [Cartesian Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for visualizing tabular data trends and comparisons. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started) shows a step‑by‑step guide to begin using the Sunburst Chart control. -- [Appearance](https://help.syncfusion.com/maui/sunburstchart/appearance) explains how to customize chart appearance and styling. -- [Labels](https://help.syncfusion.com/maui/sunburstchart/datalabels) helps configure data labels and segment display. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started) shows a step‑by‑step guide to begin using the Sunburst Chart control. +- [Appearance](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/appearance) explains how to customize chart appearance and styling. +- [Labels](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/datalabels) helps configure data labels and segment display. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/SunburstChart/Selection.md b/chart-sdk/maui/SunburstChart/Selection.md index b212de2c7..12c06003e 100644 --- a/chart-sdk/maui/SunburstChart/Selection.md +++ b/chart-sdk/maui/SunburstChart/Selection.md @@ -1,7 +1,7 @@ --- layout: post -title: Selection in .NET MAUI Sunburst Chart control | Syncfusion -description: This section explains how to enable and customize selection in the Syncfusion® .NET MAUI Sunburst Chart control. +title: Selection in .NET MAUI Sunburst Chart | Syncfusion® +description: Selection in .NET MAUI Sunburst Chart allows chart segments to be highlighted on interaction, improving data analysis and visual exploration. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -10,7 +10,7 @@ documentation: ug The Sunburst Chart supports segment selection and visual highlighting. Selection is triggered by tapping (touch) or clicking (mouse) a segment, enabling users to interact with hierarchical data. Selection requires the chart to be bound to data via the [ItemsSource](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ItemsSource), [ValueMemberPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_ValueMemberPath), and [Levels](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_Levels) properties. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. To enable selection, create an instance of the [SunburstSelectionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SunburstSelectionSettings.html) class and assign it to the [SelectionSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html#Syncfusion_Maui_SunburstChart_SfSunburstChart_SelectionSettings) property of the [SfSunburstChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.SunburstChart.SfSunburstChart.html). The `Type` and `DisplayMode` properties of `SunburstSelectionSettings` are independent and can be combined. diff --git a/chart-sdk/maui/SunburstChart/Tooltip.md b/chart-sdk/maui/SunburstChart/Tooltip.md index 29ddc577b..1e0a18c75 100644 --- a/chart-sdk/maui/SunburstChart/Tooltip.md +++ b/chart-sdk/maui/SunburstChart/Tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Sunburst Chart control | Syncfusion -description: This section explains how to enable and customize tooltips in the Syncfusion® .NET MAUI Sunburst Chart control. +title: Tooltip in .NET MAUI Sunburst Chart | Syncfusion® +description: Tooltip in .NET MAUI Sunburst Chart displays detailed information for chart segments on interaction, helping users analyze and understand hierarchical data. platform: chart-sdk control: SfSunburstChart documentation: ug @@ -11,7 +11,7 @@ documentation: ug Tooltips provide additional information about segments in the sunburst chart. A tooltip is displayed when a segment is tapped or clicked. By default, the tooltip displays the corresponding segment's category (from the `Levels` group property) and value (from the `ValueMemberPath` property). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/sunburstchart/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Sunburst Chart** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/getting-started)** guide. ## Enable tooltip diff --git a/chart-sdk/maui/barcode-generator/customization.md b/chart-sdk/maui/barcode-generator/customization.md index f23924af5..a64823007 100644 --- a/chart-sdk/maui/barcode-generator/customization.md +++ b/chart-sdk/maui/barcode-generator/customization.md @@ -1,7 +1,7 @@ --- layout: post -title: Customization in .NET MAUI Barcodes | Syncfusion® -description: Learn here all about Customization of Syncfusion® .NET MAUI Barcodes(SfBarcodeGenerator) control with key features and more. +title: Customization in .NET MAUI Barcode Generator | Syncfusion® +description: Customization in .NET MAUI Barcode Generator allows barcode appearance to be tailored using colors, sizing, labels, margins, and styling options. platform: chart-sdk control: SfBarcodeGenerator documentation: ug @@ -9,7 +9,7 @@ documentation: ug # Customization in .NET MAUI Barcode Generator -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Barcode Generator** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/barcode-generator/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Barcode Generator** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/getting-started)** guide. ## Text customization @@ -166,7 +166,7 @@ this.Content = barcode; Both one-dimensional and two-dimensional symbologies support the [`Module`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.SymbologyBase.html#Syncfusion_Maui_Barcode_SymbologyBase_Module) property. This property is used to define the size of the smallest bar line or module in the barcode. The `Module` property is available on all symbology classes derived from [`SymbologyBase`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.SymbologyBase.html) and accepts a positive `double` value. -N> `SymbologyBase` is a public abstract base class. To use a barcode, instantiate one of its derived classes such as `Codabar`, `Code128`, `QRCode`, `DataMatrix`, or other available symbology types. For an introduction to symbologies and how to assign them, refer to the **[One-dimensional symbology](https://help.syncfusion.com/maui/barcode-generator/one-dimensional-symbology)** and **[Two-dimensional symbology](https://help.syncfusion.com/maui/barcode-generator/two-dimensional-symbology)** topics. +N> `SymbologyBase` is a public abstract base class. To use a barcode, instantiate one of its derived classes such as `Codabar`, `Code128`, `QRCode`, `DataMatrix`, or other available symbology types. For an introduction to symbologies and how to assign them, refer to the **[One-dimensional symbology](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/one-dimensional-symbology)** and **[Two-dimensional symbology](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/two-dimensional-symbology)** topics. If this property is not set for a one-dimensional barcode, the size of the smallest bar line is determined based on the available width. If the [`Module`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.SymbologyBase.html#Syncfusion_Maui_Barcode_SymbologyBase_Module) property is not set for a two-dimensional barcode, the size of the smallest module is calculated based on the minimum of the available width and height. When `Module` is not set, the barcode automatically scales to fit the available space while maintaining proper proportions for scanner readability. @@ -372,6 +372,6 @@ this.Content = barcode; ## Troubleshooting -- **Value not rendered or appears truncated:** Verify that the `Value` is valid for the assigned `Symbology`. Some symbologies restrict the supported character set and length; for example, `Codabar` accepts only digits and the start/stop characters `A`, `B`, `C`, and `D`. Refer to the **[One-dimensional symbology](https://help.syncfusion.com/maui/barcode-generator/one-dimensional-symbology)** and **[Two-dimensional symbology](https://help.syncfusion.com/maui/barcode-generator/two-dimensional-symbology)** topics for the supported input rules. +- **Value not rendered or appears truncated:** Verify that the `Value` is valid for the assigned `Symbology`. Some symbologies restrict the supported character set and length; for example, `Codabar` accepts only digits and the start/stop characters `A`, `B`, `C`, and `D`. Refer to the **[One-dimensional symbology](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/one-dimensional-symbology)** and **[Two-dimensional symbology](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/two-dimensional-symbology)** topics for the supported input rules. - **Barcode appears too small or too large:** Adjust the `Module` property on the assigned symbology, or increase the `WidthRequest` and `HeightRequest` of the `SfBarcodeGenerator`. - **Colors do not appear:** Confirm that `ForegroundColor` and `BackgroundColor` are set to contrasting colors; setting both to the same value produces a blank barcode. diff --git a/chart-sdk/maui/barcode-generator/getting-started.md b/chart-sdk/maui/barcode-generator/getting-started.md index cb03b47de..d64f15eb2 100644 --- a/chart-sdk/maui/barcode-generator/getting-started.md +++ b/chart-sdk/maui/barcode-generator/getting-started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Barcode Generator control | Syncfusion -description: Learn here all about getting started with Syncfusion® .NET MAUI Barcode Generator(SfBarcodeGenerator) control and more. +title: Getting Started with .NET MAUI Barcode Generator | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Barcode Generator control. Explore setup, barcode symbologies, customization, and generation features. platform: chart-sdk control: SfBarcodeGenerator documentation: ug diff --git a/chart-sdk/maui/barcode-generator/migration.md b/chart-sdk/maui/barcode-generator/migration.md index cf6d396d7..a9dbb833f 100644 --- a/chart-sdk/maui/barcode-generator/migration.md +++ b/chart-sdk/maui/barcode-generator/migration.md @@ -1,7 +1,7 @@ --- layout: post -title: Migrate from Xamarin to .NET MAUI Barcodes | Syncfusion® -description: Learn here all about Migrating from Syncfusion® Xamarin SfBarcode to Syncfusion® .NET MAUI SfBarcodeGenerator control and more. +title: Migrate SfBarcode to .NET MAUI SfBarcodeGenerator | Syncfusion® +description: Migrate from Xamarin.Forms SfBarcode to .NET MAUI SfBarcodeGenerator with updated APIs, improved performance, and modern barcode generation features. platform: chart-sdk control: SfBarcodeGenerator documentation: ug diff --git a/chart-sdk/maui/barcode-generator/one-dimensional-symbology.md b/chart-sdk/maui/barcode-generator/one-dimensional-symbology.md index e66df876a..f2976bf36 100644 --- a/chart-sdk/maui/barcode-generator/one-dimensional-symbology.md +++ b/chart-sdk/maui/barcode-generator/one-dimensional-symbology.md @@ -1,13 +1,13 @@ --- layout: post -title: One-dimensional symbology in .NET MAUI Barcodes | Syncfusion® -description: Learn here all about one dimensional symbology of Syncfusion® .NET MAUI Barcodes(SfBarcodeGenerator) control with key features and more. +title: One-Dimensional Symbology in .NET MAUI Barcode Generator | Syncfusion® +description: One-Dimensional Symbology in .NET MAUI Barcode Generator supports linear barcode formats, enabling accurate encoding and scanning of business data. platform: chart-sdk control: SfBarcodeGenerator documentation: ug --- -# One-dimensional symbology in .NET MAUI Barcode Generator +# One-Dimensional Symbology in .NET MAUI Barcode Generator The one-dimensional [.NET MAUI Barcode Generator](https://www.syncfusion.com/maui-controls/maui-barcodes) represents the data by varying the widths and spacings of the parallel lines. These barcode types are also known as linear barcode types. The Syncfusion® .NET MAUI barcode generator supports the following one-dimensional barcode types: @@ -24,7 +24,7 @@ The one-dimensional [.NET MAUI Barcode Generator](https://www.syncfusion.com/mau * [`EAN8`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.EAN8.html) * [`EAN13`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.EAN13.html) -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Barcode Generator** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/barcode-generator/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Barcode Generator** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/getting-started)** guide. N> All one-dimensional symbologies support the [`Module`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.SymbologyBase.html#Syncfusion_Maui_Barcode_SymbologyBase_Module) property, which defines the size of the smallest bar line of the barcode. By default, `Module` is not set; the smallest bar line size is automatically calculated based on the available size and the total number of bars for the provided input value. diff --git a/chart-sdk/maui/barcode-generator/overview.md b/chart-sdk/maui/barcode-generator/overview.md index b4ae64e16..be8643088 100644 --- a/chart-sdk/maui/barcode-generator/overview.md +++ b/chart-sdk/maui/barcode-generator/overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Barcode Generator control | Syncfusion® -description: Learn here all about introduction of Syncfusion .NET MAUI Barcodes(SfBarcodeGenerator) control with key features and more. +title: About Syncfusion® .NET MAUI Barcode Generator Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Barcode Generator control, including barcode symbologies, customization options, and generation features. platform: chart-sdk control: SfBarcodeGenerator documentation: ug --- -# .NET MAUI Barcode Generator Overview +# About Syncfusion® .NET MAUI Barcode Generator Control The Syncfusion® [.NET MAUI Barcode Generator](https://www.syncfusion.com/maui-controls/maui-barcodes) is a data visualization control used to generate and display data in a machine-readable format. It provides a perfect approach to encode text using supported symbology types. @@ -31,15 +31,13 @@ The Syncfusion® [.NET MAUI Barcode Generator](https://www.syncfus ## Related controls -- [DataGrid](https://help.syncfusion.com/maui/datagrid/overview) for managing and displaying barcode-related data in tabular format. -- [ListView](https://help.syncfusion.com/maui/listview/overview) for presenting barcode items in list-based layouts. -- [TreeMap](https://help.syncfusion.com/maui/treemap/overview) for visualize barcode usage or distribution patterns in a hierarchical, comparative view. +- [TreeMap](https://help.syncfusion.com/chart-sdk/maui/treemap/overview) for visualize barcode usage or distribution patterns in a hierarchical, comparative view. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/barcode-generator/getting-started) shows how to begin using the Barcode Generator step by step. -- [One Dimensional Symbology](https://help.syncfusion.com/maui/barcode-generator/one-dimensional-symbology) explains supported linear barcode types and usage. -- [Customization](https://help.syncfusion.com/maui/barcode-generator/customization) shows how to customize barcode appearance and behavior. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/getting-started) shows how to begin using the Barcode Generator step by step. +- [One Dimensional Symbology](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/one-dimensional-symbology) explains supported linear barcode types and usage. +- [Customization](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/customization) shows how to customize barcode appearance and behavior. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready-made UI examples. ## Resources diff --git a/chart-sdk/maui/barcode-generator/two-dimensional-symbology.md b/chart-sdk/maui/barcode-generator/two-dimensional-symbology.md index 7b258f12e..10dc9b34d 100644 --- a/chart-sdk/maui/barcode-generator/two-dimensional-symbology.md +++ b/chart-sdk/maui/barcode-generator/two-dimensional-symbology.md @@ -1,20 +1,20 @@ --- layout: post -title: Two-dimensional symbology in .NET MAUI Barcodes | Syncfusion® -description: Learn here all about two-dimensional symbology of Syncfusion® .NET MAUI Barcodes(SfBarcodeGenerator) control with key features and more. +title: Two-Dimensional Symbology in .NET MAUI Barcode Generator | Syncfusion® +description: Two-Dimensional Symbology in .NET MAUI Barcode Generator supports 2D barcode formats, enabling efficient encoding and storage of large amounts of data. platform: chart-sdk control: SfBarcodeGenerator documentation: ug --- -# Two-dimensional symbology in .NET MAUI Barcode Generator +# Two-Dimensional Symbology in .NET MAUI Barcode Generator The two-dimensional [.NET MAUI Barcode Generator](https://www.syncfusion.com/maui-controls/maui-barcodes) can represent more data per unit area compared to one-dimensional barcodes by using a two-dimensional layout. The barcode generator control supports the following two-dimensional symbology: * [`QRCode`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.QRCode.html) * [`DataMatrix`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.DataMatrix.html) -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Barcode Generator** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/barcode-generator/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Barcode Generator** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/barcode-generator/getting-started)** guide. N> Like one-dimensional symbology, the two-dimensional symbology also supports the [`Module`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.SymbologyBase.html#Syncfusion_Maui_Barcode_SymbologyBase_Module) property. The property is used to define the size of the smallest module or dot of the barcode. If this property is not set, the size of the smallest dot of the barcode is automatically calculated based on the available size. diff --git a/chart-sdk/maui/linear-gauge/animation.md b/chart-sdk/maui/linear-gauge/animation.md index 593c8775d..991db4b3d 100644 --- a/chart-sdk/maui/linear-gauge/animation.md +++ b/chart-sdk/maui/linear-gauge/animation.md @@ -1,17 +1,17 @@ --- layout: post -title: Animation in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing animation of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Animation in .NET MAUI Linear Gauge | Syncfusion® +description: Animation in .NET MAUI Linear Gauge provides smooth transitions for gauge elements, improving visual feedback and enhancing the overall user experience. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Animation in .NET MAUI Linear Gauge (SfLinearGauge) +# Animation in .NET MAUI Linear Gauge All Linear Gauge elements including the scale, ticks and labels, range, bar pointer, shape marker pointer, and content marker pointer, can be animated separately. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. ## Animate axis diff --git a/chart-sdk/maui/linear-gauge/bar-pointer.md b/chart-sdk/maui/linear-gauge/bar-pointer.md index ecb73728c..5daeb2002 100644 --- a/chart-sdk/maui/linear-gauge/bar-pointer.md +++ b/chart-sdk/maui/linear-gauge/bar-pointer.md @@ -1,17 +1,17 @@ --- layout: post -title: Bar Pointer in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing Bar Pointer of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Bar Pointer in .NET MAUI Linear Gauge | Syncfusion® +description: Bar Pointer in .NET MAUI Linear Gauge represents values using a filled bar along the gauge scale, enabling clear and intuitive data visualization. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Bar Pointer in .NET MAUI Linear Gauge (SfLinearGauge) +# Bar Pointer in .NET MAUI Linear Gauge A bar pointer is an accenting line or shaded background that can be placed on a Linear Gauge to mark any current value in the scale track. The bar pointers always start from the minimum value of the scale and end with the specified value. Therefore, the [`Value`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearPointer.html#Syncfusion_Maui_Gauges_LinearPointer_Value) property is a required parameter for creating a bar pointer. Multiple bar pointers can be added to a single gauge. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. ## Default bar pointer diff --git a/chart-sdk/maui/linear-gauge/content-marker-pointer.md b/chart-sdk/maui/linear-gauge/content-marker-pointer.md index ba1ad6a04..dbc5c220a 100644 --- a/chart-sdk/maui/linear-gauge/content-marker-pointer.md +++ b/chart-sdk/maui/linear-gauge/content-marker-pointer.md @@ -1,17 +1,17 @@ --- layout: post -title: Content Marker Pointer in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about Content Pointer feature of the Syncfusion® .NET MAUI Linear Gauge control, including image, text pointer support and more. +title: Content Marker Pointer in .NET MAUI Linear Gauge | Syncfusion® +description: Content Marker Pointer in .NET MAUI Linear Gauge displays custom content as a marker pointer, enabling flexible representation of values within the gauge scale. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Content Marker Pointer in .NET MAUI Linear Gauge (SfLinearGauge) +# Content Marker Pointer in .NET MAUI Linear Gauge -The [`LinearContentPointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearContentPointer.html) in [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html) allows you to use any .NET MAUI content as a marker pointer. Multiple content marker pointers can be added to a single gauge. For animation support, refer to the [Pointer animation](https://help.syncfusion.com/maui/linear-gauge/animation#pointer-animation) documentation. The following code sample uses an `Image` as a marker pointer. +The [`LinearContentPointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearContentPointer.html) in [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html) allows you to use any .NET MAUI content as a marker pointer. Multiple content marker pointers can be added to a single gauge. For animation support, refer to the [Pointer animation](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/animation#pointer-animation) documentation. The following code sample uses an `Image` as a marker pointer. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. N> The image used in the `Image` source (e.g., `pin.png`) must be added to your project's resources. diff --git a/chart-sdk/maui/linear-gauge/getting-started.md b/chart-sdk/maui/linear-gauge/getting-started.md index d7d2b2368..778751f7f 100644 --- a/chart-sdk/maui/linear-gauge/getting-started.md +++ b/chart-sdk/maui/linear-gauge/getting-started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting started with .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here about getting started with Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control, its elements, and more. +title: Getting Started with .NET MAUI Linear Gauge | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Linear Gauge control. Explore setup, scales, pointers, ranges, and customization features. platform: chart-sdk control: SfLinearGauge documentation: ug @@ -126,7 +126,7 @@ using Syncfusion.Maui.Gauges; ## Step 5: Add a Linear Gauge with Pointers, Ranges, and Bar Pointers -Initialize the [SfLinearGauge](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html?tabs=tabid-1) to show values on a linear scale, with [ranges](https://help.syncfusion.com/maui/linear-gauge/range) highlighting value segments and [pointers](https://help.syncfusion.com/maui/linear-gauge/pointers) indicating specific values clearly. The [LinearRange](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearRange.html) highlights a value segment, the [LinearShapePointer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearShapePointer.html) and [LinearContentPointer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearContentPointer.html) are marker pointers, and the [BarPointer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.BarPointer.html) is a shaded bar from the minimum scale value to the specified value. +Initialize the [SfLinearGauge](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html?tabs=tabid-1) to show values on a linear scale, with [ranges](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/range) highlighting value segments and [pointers](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/pointers) indicating specific values clearly. The [LinearRange](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearRange.html) highlights a value segment, the [LinearShapePointer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearShapePointer.html) and [LinearContentPointer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearContentPointer.html) are marker pointers, and the [BarPointer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.BarPointer.html) is a shaded bar from the minimum scale value to the specified value. N> The image used in the `LinearContentPointer` source (e.g., `pin.png`) must be added to your project's resources. diff --git a/chart-sdk/maui/linear-gauge/labels.md b/chart-sdk/maui/linear-gauge/labels.md index e1d39431d..cf859501f 100644 --- a/chart-sdk/maui/linear-gauge/labels.md +++ b/chart-sdk/maui/linear-gauge/labels.md @@ -1,19 +1,19 @@ --- layout: post -title: Labels in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing Labels of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Labels in .NET MAUI Linear Gauge | Syncfusion® +description: Labels in .NET MAUI Linear Gauge display scale values with customizable formatting and positioning, improving readability and gauge interpretation. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Labels in .NET MAUI Linear Gauge (SfLinearGauge) +# Labels in .NET MAUI Linear Gauge The default style of gauge labels is as follows. ![Default .NET MAUI Linear Gauge labels](images/getting-started/default_linear_gauge.PNG) -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. ## Customize label styles diff --git a/chart-sdk/maui/linear-gauge/migration.md b/chart-sdk/maui/linear-gauge/migration.md index 478ad2da1..5b6d1da47 100644 --- a/chart-sdk/maui/linear-gauge/migration.md +++ b/chart-sdk/maui/linear-gauge/migration.md @@ -1,7 +1,7 @@ --- layout: post -title: Migrate from Xamarin to .NET MAUI SfLinearGauge | Syncfusion® -description: Learn here all about Migrating from Syncfusion Xamarin SfLinearGauge to Syncfusion® .NET MAUI SfLinearGauge control and more. +title: Migrate Xamarin SfLinearGauge to .NET MAUI SfLinearGauge | Syncfusion® +description: Migrate from Xamarin.Forms SfLinearGauge to .NET MAUI SfLinearGauge with updated APIs, improved performance, and modern gauge visualization features. platform: chart-sdk control: SfLinearGauge documentation: ug @@ -9,13 +9,13 @@ documentation: ug # Migrate from Xamarin.Forms SfLinearGauge to .NET MAUI SfLinearGauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. To make the migration from the [Xamarin SfLinearGauge](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfGauge.XForms.SfLinearGauge.html) to the [.NET MAUI SfLinearGauge](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html) easier, most of the similar APIs from the Xamarin [SfLinearGauge](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfGauge.XForms.SfLinearGauge.html) were kept in the .NET MAUI [SfLinearGauge](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html). Also, the APIs have been restructured by considering various use cases and maintaining API consistency. Please find the difference in the following topics. ## Initialize control -To initialize the control, import the gauge namespace and initialize SfLinearGauge as shown in the following code sample. In .NET MAUI, you also need to register the Syncfusion core handler by calling `builder.ConfigureSyncfusionCore()` in the `MauiProgram.cs` file. For more information, refer to the [Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started) guide. +To initialize the control, import the gauge namespace and initialize SfLinearGauge as shown in the following code sample. In .NET MAUI, you also need to register the Syncfusion core handler by calling `builder.ConfigureSyncfusionCore()` in the `MauiProgram.cs` file. For more information, refer to the [Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) guide.
Keyboard navigation
Sunburst ChartSunburst Chart not-applicable not-applicable full-support
diff --git a/chart-sdk/maui/linear-gauge/mirror-linear-gauge.md b/chart-sdk/maui/linear-gauge/mirror-linear-gauge.md index ab775157f..74a5dcfeb 100644 --- a/chart-sdk/maui/linear-gauge/mirror-linear-gauge.md +++ b/chart-sdk/maui/linear-gauge/mirror-linear-gauge.md @@ -1,15 +1,15 @@ --- layout: post -title: Mirroring in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn how to use the IsMirrored property to mirror the Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control. +title: Mirroring in .NET MAUI Linear Gauge | Syncfusion® +description: Mirroring in .NET MAUI Linear Gauge reverses the gauge direction and element layout, enabling right-to-left orientation and flexible visual presentation. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Mirroring in .NET MAUI Linear Gauge (SfLinearGauge) +# Mirroring in .NET MAUI Linear Gauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. The [`IsMirrored`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_IsMirrored) property in [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html?tabs=tabid-1) mirrors all the Linear Gauge elements (scale, labels, ticks, and pointers) in the [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html?tabs=tabid-1). This is useful for right-to-left (RTL) layout support. The default value of this property is `false`. The following code sample demonstrates how to set the [`IsMirrored`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_IsMirrored) property. diff --git a/chart-sdk/maui/linear-gauge/overview.md b/chart-sdk/maui/linear-gauge/overview.md index c95246cd5..2c9f9fe44 100644 --- a/chart-sdk/maui/linear-gauge/overview.md +++ b/chart-sdk/maui/linear-gauge/overview.md @@ -1,15 +1,15 @@ --- layout: post -title: About .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about introduction of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control, its features, and more. +title: About Syncfusion® .NET MAUI Linear Gauge Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Linear Gauge control, including scales, pointers, ranges, labels, and customization features. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# .NET MAUI Linear Gauge (SfLinearGauge) Overview +# About Syncfusion® .NET MAUI Linear Gauge Control -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. Syncfusion® [.NET MAUI Linear Gauge](https://www.syncfusion.com/maui-controls/maui-linear-gauge) is a data visualization control to display values on a linear scale. Use this control to craft high-quality mobile app user interfaces. The .NET MAUI Linear Gauge is supported on Windows, macOS, iOS, and Android. @@ -27,10 +27,10 @@ Syncfusion® [.NET MAUI Linear Gauge](https://www.syncfusion.com/maui-controls/m - **Orientation** enables displaying the gauge in horizontal or vertical layouts based on UI requirements. - **Customizable scale** enables configuring thickness, edge styles, and reversing the scale direction. - **Labels and ticks** enables styling labels, major ticks, and minor ticks for better readability. -- **[Range support](https://help.syncfusion.com/maui/linear-gauge/range)** enables highlighting value intervals on the scale with different visual styles. -- **[Pointer support](https://help.syncfusion.com/maui/linear-gauge/pointers)** enables using shape marker, content marker, and bar pointers to indicate values. -- **[Mirror mode](https://help.syncfusion.com/maui/linear-gauge/mirror-linear-gauge)** enables rendering gauge elements in a mirrored layout for alternate visual representation. -- **[Animation](https://help.syncfusion.com/maui/linear-gauge/animation)** enables animating gauge elements during load or value changes for better user experience. +- **[Range support](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/range)** enables highlighting value intervals on the scale with different visual styles. +- **[Pointer support](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/pointers)** enables using shape marker, content marker, and bar pointers to indicate values. +- **[Mirror mode](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/mirror-linear-gauge)** enables rendering gauge elements in a mirrored layout for alternate visual representation. +- **[Animation](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/animation)** enables animating gauge elements during load or value changes for better user experience. - **Interactive pointer** enables you to adjust values dynamically through drag or swipe gestures. ## Globalization @@ -84,15 +84,15 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Radial Gauge](https://help.syncfusion.com/maui/radial-gauge/overview) for visualizing values using circular gauge representation. -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for visualizing proportional data using circular charts. -- [Digital Gauge](https://help.syncfusion.com/maui/digitalgauge/overview) for displaying numeric or character values using segmented digital display styles. +- [Radial Gauge](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/overview) for visualizing values using circular gauge representation. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for visualizing proportional data using circular charts. +- [Digital Gauge](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/overview) for displaying numeric or character values using segmented digital display styles. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started) shows a step-by-step guide to begin using the Linear Gauge control. -- [Range](https://help.syncfusion.com/maui/linear-gauge/range) explains how to configure ranges and scale visualization. -- [Pointers](https://help.syncfusion.com/maui/linear-gauge/pointers) helps customize pointer types and behavior. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) shows a step-by-step guide to begin using the Linear Gauge control. +- [Range](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/range) explains how to configure ranges and scale visualization. +- [Pointers](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/pointers) helps customize pointer types and behavior. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready-made UI examples. ## Resources diff --git a/chart-sdk/maui/linear-gauge/pointers.md b/chart-sdk/maui/linear-gauge/pointers.md index 23240e525..9a7a8bcc6 100644 --- a/chart-sdk/maui/linear-gauge/pointers.md +++ b/chart-sdk/maui/linear-gauge/pointers.md @@ -1,21 +1,21 @@ --- layout: post -title: Pointers and Interaction in .NET MAUI Linear Gauge | Syncfusion® -description: Learn here all about the pointers and interactions in Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Pointers in .NET MAUI Linear Gauge | Syncfusion® +description: Pointers in .NET MAUI Linear Gauge indicate values along the gauge scale using different pointer types, enabling clear and effective data representation. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Pointers in .NET MAUI Linear Gauge (SfLinearGauge) +# Pointers in .NET MAUI Linear Gauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. The pointer is used to indicate values on a scale. The Linear Gauge control has three types of pointers: -* [`Bar pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.BarPointer.html) - A shaded bar from the minimum scale value to the specified value. For more details, refer to the [Bar pointer](https://help.syncfusion.com/maui/linear-gauge/bar-pointer) documentation. -* [`Shape pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearShapePointer.html) - A built-in shape marker (e.g., circle, triangle) placed on the scale. For more details, refer to the [Shape marker pointer](https://help.syncfusion.com/maui/linear-gauge/shape-marker-pointer) documentation. -* [`Content pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearContentPointer.html) - Any .NET MAUI content (e.g., image, text, or custom view) placed on the scale. For more details, refer to the [Content marker pointer](https://help.syncfusion.com/maui/linear-gauge/content-marker-pointer) documentation. +* [`Bar pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.BarPointer.html) - A shaded bar from the minimum scale value to the specified value. For more details, refer to the [Bar pointer](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/bar-pointer) documentation. +* [`Shape pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearShapePointer.html) - A built-in shape marker (e.g., circle, triangle) placed on the scale. For more details, refer to the [Shape marker pointer](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/shape-marker-pointer) documentation. +* [`Content pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearContentPointer.html) - Any .NET MAUI content (e.g., image, text, or custom view) placed on the scale. For more details, refer to the [Content marker pointer](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/content-marker-pointer) documentation. All the pointers can be customized as needed. You can add multiple pointers to the gauge to point multiple values on the same scale. The value of the pointer is set using the [`Value`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearPointer.html#Syncfusion_Maui_Gauges_LinearPointer_Value) property. All three pointer types support interaction when the `IsInteractive` property is enabled. diff --git a/chart-sdk/maui/linear-gauge/range.md b/chart-sdk/maui/linear-gauge/range.md index cd9829453..1f6a4c4bf 100644 --- a/chart-sdk/maui/linear-gauge/range.md +++ b/chart-sdk/maui/linear-gauge/range.md @@ -1,15 +1,15 @@ --- layout: post -title: Range in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing Range of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Range in .NET MAUI Linear Gauge | Syncfusion® +description: Range in .NET MAUI Linear Gauge highlights specific value intervals on the gauge scale, improving data visualization and emphasizing important thresholds. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Range in .NET MAUI Linear Gauge (SfLinearGauge) +# Range in .NET MAUI Linear Gauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the [.NET MAUI Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started) control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. A range is a visual element that helps you quickly visualize where a range falls on the axis track. Multiple ranges with different styles can be added to a linear gauge. The default style of range will be as follows. diff --git a/chart-sdk/maui/linear-gauge/scale.md b/chart-sdk/maui/linear-gauge/scale.md index 15723fa6f..cab064e93 100644 --- a/chart-sdk/maui/linear-gauge/scale.md +++ b/chart-sdk/maui/linear-gauge/scale.md @@ -1,16 +1,16 @@ --- layout: post -title: Scale in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing scale of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Scale in .NET MAUI Linear Gauge | Syncfusion® +description: Scale in .NET MAUI Linear Gauge defines the measurement axis for displaying values, supporting customizable intervals, labels, and visual styling. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Scale in .NET MAUI Linear Gauge (SfLinearGauge) +# Scale in .NET MAUI Linear Gauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. The Linear Gauge scale on which a set of values can be plotted. A scale can be customized by changing the thickness, color, and edge styles. Scale elements such as labels and ticks can also be easily customized and the scale can be inversed. diff --git a/chart-sdk/maui/linear-gauge/shape-marker-pointer.md b/chart-sdk/maui/linear-gauge/shape-marker-pointer.md index 6cfffcc9a..c724ae8bf 100644 --- a/chart-sdk/maui/linear-gauge/shape-marker-pointer.md +++ b/chart-sdk/maui/linear-gauge/shape-marker-pointer.md @@ -1,15 +1,15 @@ --- layout: post -title: Shape Marker Pointer in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing Shape Marker Pointer of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Shape Marker Pointer in .NET MAUI Linear Gauge | Syncfusion® +description: Shape Marker Pointer in .NET MAUI Linear Gauge displays values using customizable marker shapes, enabling clear visualization and precise value indication. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Shape Marker Pointer in .NET MAUI Linear Gauge (SfLinearGauge) +# Shape Marker Pointer in .NET MAUI Linear Gauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. The [`LinearShapePointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.LinearShapePointer.html) in [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html) has the following pre-defined shapes to mark a specific value. The default shape pointer is [`InvertedTriangle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.ShapeType.html#Syncfusion_Maui_Gauges_ShapeType_InvertedTriangle). diff --git a/chart-sdk/maui/linear-gauge/ticks.md b/chart-sdk/maui/linear-gauge/ticks.md index 4a972278b..20fcc1c90 100644 --- a/chart-sdk/maui/linear-gauge/ticks.md +++ b/chart-sdk/maui/linear-gauge/ticks.md @@ -1,15 +1,15 @@ --- layout: post -title: Ticks in .NET MAUI Linear Gauge control | Syncfusion® -description: Learn here all about adding and customizing Ticks of Syncfusion® .NET MAUI Linear Gauge (SfLinearGauge) control and more. +title: Ticks in .NET MAUI Linear Gauge | Syncfusion® +description: Ticks in .NET MAUI Linear Gauge indicate scale intervals and measurement points, improving readability and helping interpret gauge values accurately. platform: chart-sdk control: SfLinearGauge documentation: ug --- -# Ticks in .NET MAUI Linear Gauge (SfLinearGauge) +# Ticks in .NET MAUI Linear Gauge -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/linear-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Linear Gauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/getting-started)** guide. The default style of scale ticks is as follows. @@ -78,7 +78,7 @@ SfLinearGauge gauge = new SfLinearGauge(); ## Customize Minor Tick Interval -The major ticks are generated based on the [`Interval`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_Interval) property, which defines the interval between major ticks. For more details, refer to the [`Customize the interval between labels`](https://help.syncfusion.com/maui/linear-gauge/labels#customize-interval-between-labels) topic. The minor ticks are calculated using the [`MinorTicksPerInterval`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_MinorTicksPerInterval) property of [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html?tabs=tabid-1). By default, the value of this property is 1. +The major ticks are generated based on the [`Interval`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_Interval) property, which defines the interval between major ticks. For more details, refer to the [`Customize the interval between labels`](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/labels#customize-interval-between-labels) topic. The minor ticks are calculated using the [`MinorTicksPerInterval`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_MinorTicksPerInterval) property of [`SfLinearGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html?tabs=tabid-1). By default, the value of this property is 1. {% tabs %} @@ -126,7 +126,7 @@ SfLinearGauge gauge = new SfLinearGauge(); ## Customize Tick Position -The linear scale allows you to position the ticks either inside or outside the scale track using the [`TickPosition`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_TickPosition) property. The available positions are [`Inside`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeElementPosition.html#Syncfusion_Maui_Gauges_GaugeElementPosition_Inside), [`Outside`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeElementPosition.html#Syncfusion_Maui_Gauges_GaugeElementPosition_Outside), and [`Cross`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeElementPosition.html#Syncfusion_Maui_Gauges_GaugeElementPosition_Cross). By default, ticks are positioned inside the scale track. N> The [`LabelPosition`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_LabelPosition) property is also set to `Outside` in the sample below for visual consistency. For details, refer to the [labels](https://help.syncfusion.com/maui/linear-gauge/labels) topic. +The linear scale allows you to position the ticks either inside or outside the scale track using the [`TickPosition`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_TickPosition) property. The available positions are [`Inside`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeElementPosition.html#Syncfusion_Maui_Gauges_GaugeElementPosition_Inside), [`Outside`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeElementPosition.html#Syncfusion_Maui_Gauges_GaugeElementPosition_Outside), and [`Cross`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeElementPosition.html#Syncfusion_Maui_Gauges_GaugeElementPosition_Cross). By default, ticks are positioned inside the scale track. N> The [`LabelPosition`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfLinearGauge.html#Syncfusion_Maui_Gauges_SfLinearGauge_LabelPosition) property is also set to `Outside` in the sample below for visual consistency. For details, refer to the [labels](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/labels) topic. {% tabs %} diff --git a/chart-sdk/maui/maps/AI-driven-smart-location-search.md b/chart-sdk/maui/maps/AI-driven-smart-location-search.md index de588aa48..9fe0a2b93 100644 --- a/chart-sdk/maui/maps/AI-driven-smart-location-search.md +++ b/chart-sdk/maui/maps/AI-driven-smart-location-search.md @@ -1,17 +1,17 @@ --- layout: post -title: AI-Driven smart location search in .NET MAUI Maps control | Syncfusion -description: Learn here all about the AI-Driven smart location searching feature of Syncfusion® .NET MAUI Maps (SfMaps) control and more. +title: AI-Driven Smart Location Search in .NET MAUI Maps | Syncfusion® +description: AI-Driven Smart Location Search in .NET MAUI Maps enables intelligent location discovery through AI-powered search, improving navigation and map interactions. platform: chart-sdk control: SfMaps documentation: ug --- -# AI-Driven Smart Location Search in .NET MAUI Maps (SfMaps) +# AI-Driven Smart Location Search in .NET MAUI Maps This document provides a comprehensive guide to implementing advanced search functionality within the Syncfusion [.NET MAUI Maps](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.SfMaps.html) control. By integrating **Azure OpenAI**, this solution enables an intelligent, AI-powered location search experience. -N> **Prerequisite:** Ensure that the required NuGet packages are installed, the necessary namespaces are imported, and the **.NET MAUI Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[.NET MAUI Maps Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. Also, refer to the **[.NET MAUI Autocomplete Getting Started](https://help.syncfusion.com/maui/autocomplete/getting-started)** guide before proceeding with this documentation. +N> **Prerequisite:** Ensure that the required NuGet packages are installed, the necessary namespaces are imported, and the **.NET MAUI Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[.NET MAUI Maps Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. Also, refer to the **[.NET MAUI Autocomplete Getting Started](https://help.syncfusion.com/maui/autocomplete/getting-started)** guide before proceeding with this documentation. ## Integrating Azure OpenAI with the .NET MAUI app @@ -153,7 +153,7 @@ public class CustomMarker : MapMarker ### Step 2: Add Maps tile layer in .NET MAUI Maps -Add a [tile layer](https://help.syncfusion.com/maui/maps/getting-started#add-tile-layer) in the .NET MAUI Maps that can be used to search for and locate landmarks based on user input. The `EnableCenterAnimation` property animates the map center change, `CanCacheTiles` enables local tile caching for faster reloads, and `ZoomLevel` sets the initial magnification. +Add a [tile layer](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started#add-tile-layer) in the .NET MAUI Maps that can be used to search for and locate landmarks based on user input. The `EnableCenterAnimation` property animates the map center change, `CanCacheTiles` enables local tile caching for faster reloads, and `ZoomLevel` sets the initial magnification. N> The OpenStreetMap tile URL used here is subject to the [OSM Tile Usage Policy](https://operations.osmfoundation.org/policies/tiles/). Use a suitable tile provider for production and respect the provider's usage limits. diff --git a/chart-sdk/maui/maps/bubble.md b/chart-sdk/maui/maps/bubble.md index e3fbda5f4..379921a74 100644 --- a/chart-sdk/maui/maps/bubble.md +++ b/chart-sdk/maui/maps/bubble.md @@ -1,15 +1,15 @@ --- layout: post -title: Bubbles in .NET MAUI Maps Control | Syncfusion® -description: Learn all about the Bubbles feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize their appearances and more. +title: Bubbles in .NET MAUI Maps | Syncfusion® +description: Bubbles in .NET MAUI Maps visualize data using scalable markers, making it easy to represent geographic values and compare data across locations. platform: chart-sdk control: SfMaps documentation: ug --- -# Bubbles in .NET MAUI Maps (SfMaps) +# Bubbles in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **.NET MAUI Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **.NET MAUI Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. Bubbles can be rendered in different colors and sizes based on the data values of their assigned shape. You can add information to shapes such as population density, number of users, and more. diff --git a/chart-sdk/maui/maps/custom-shape.md b/chart-sdk/maui/maps/custom-shape.md index c94e54fd8..db716801c 100644 --- a/chart-sdk/maui/maps/custom-shape.md +++ b/chart-sdk/maui/maps/custom-shape.md @@ -1,22 +1,22 @@ --- layout: post -title: Custom Shapes in .NET MAUI Maps Control | Syncfusion® -description: Learn here all about the custom shapes feature of Syncfusion® .NET MAUI Maps (SfMaps) control, its features, and more. +title: Custom Shapes in .NET MAUI Maps | Syncfusion® +description: Custom Shapes in .NET MAUI Maps enable personalized geographic visualizations using custom shape data, improving map representation and spatial analysis. platform: chart-sdk control: SfMaps documentation: ug keywords: .net maui maps, .net maui shape maps --- -# Custom shapes in .NET MAUI Maps (SfMaps) +# Custom Shapes in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **.NET MAUI Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **.NET MAUI Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. The [.NET MAUI Maps](https://www.syncfusion.com/maui-controls/maui-maps) control allows you to render any custom shape to make a map look like building infrastructure, a sports stadium, a plane or bus seat arrangement, and more, using the [`Geometry`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_Geometry) property. The [`Geometry`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_Geometry) property accepts a [`MapGeometryType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapGeometryType.html) enum value. When set to [`MapGeometryType.Points`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapGeometryType.html), the layer renders the points defined in the [`ShapesSource`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_ShapesSource) as custom shapes (instead of interpreting the source as GeoJSON polygons/paths). Use [`ShapesSource`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_ShapesSource) to supply the custom-shape definition file. -N> When loading an embedded shape source with [`MapSource.FromResource`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapSource.html), the JSON file must be embedded in the assembly. Set its build action to `EmbeddedResource`, and reference it by its resource ID (for example, `MyProject.floor_planning.json`). For more details, see the **[Load an embedded file](https://help.syncfusion.com/maui/maps/getting-started#load-an-embedded-file)** section of the Getting Started guide. +N> When loading an embedded shape source with [`MapSource.FromResource`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapSource.html), the JSON file must be embedded in the assembly. Set its build action to `EmbeddedResource`, and reference it by its resource ID (for example, `MyProject.floor_planning.json`). For more details, see the **[Load an embedded file](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started#load-an-embedded-file)** section of the Getting Started guide. {% tabs %} @@ -60,8 +60,8 @@ The following properties are commonly used to customize the rendered custom shap ## See Also -* [Markers in .NET MAUI Maps](https://help.syncfusion.com/maui/maps/markers) -* [Shape sublayer in .NET MAUI Maps](https://help.syncfusion.com/maui/maps/shape-sublayer) -* [Data labels in .NET MAUI Maps](https://help.syncfusion.com/maui/maps/data-labels) +* [Markers in .NET MAUI Maps](https://help.syncfusion.com/chart-sdk/maui/maps/markers) +* [Shape sublayer in .NET MAUI Maps](https://help.syncfusion.com/chart-sdk/maui/maps/shape-sublayer) +* [Data labels in .NET MAUI Maps](https://help.syncfusion.com/chart-sdk/maui/maps/data-labels) ![Custom shapes in .NET MAUI Maps](images/custom-shape/maps_cartesian_view.png) \ No newline at end of file diff --git a/chart-sdk/maui/maps/data-labels.md b/chart-sdk/maui/maps/data-labels.md index 64ef367e8..b91397846 100644 --- a/chart-sdk/maui/maps/data-labels.md +++ b/chart-sdk/maui/maps/data-labels.md @@ -1,15 +1,15 @@ --- layout: post -title: Data Labels in .NET MAUI Maps control | Syncfusion® -description: Learn all about the Data Labels feature of Syncfusion® .NET MAUI Maps (SfMaps) control to add labels to the shapes and more. +title: Data Labels in .NET MAUI Maps | Syncfusion® +description: Data Labels in .NET MAUI Maps display descriptive information for map elements, helping identify locations and improve geographic data visualization. platform: chart-sdk control: SfMaps documentation: ug --- -# Data Labels in .NET MAUI Maps (SfMaps) +# Data Labels in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. Data labels provide identification for the shapes by displaying their names. You can trim or hide the labels if they exceed the shape bounds. diff --git a/chart-sdk/maui/maps/getting-started.md b/chart-sdk/maui/maps/getting-started.md index 6c967cc22..65b76156c 100644 --- a/chart-sdk/maui/maps/getting-started.md +++ b/chart-sdk/maui/maps/getting-started.md @@ -1,16 +1,14 @@ --- layout: post -title: Getting started with .NET MAUI Maps control | Syncfusion® -description: Learn here about getting started with Syncfusion® .NET MAUI Maps (SfMaps) control, its elements, and more. +title: Getting Started with .NET MAUI Maps | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Maps control. Explore setup, layers, markers, shapes, and geographic visualization features. platform: chart-sdk control: SfMaps documentation: ug keywords: .net maui maps, .net maui maps library. --- -# Getting started with .NET MAUI Maps (SfMaps) - -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +# Getting Started with .NET MAUI Maps This section explains the steps required to add the maps control with the shape layer and its elements such as data labels, tooltip, markers, and legends. This section covers only basic features needed to know to get started with Syncfusion® maps. Follow the steps below to add .NET MAUI Maps control to your project. @@ -282,4 +280,4 @@ The following screenshot illustrates the result of the above code. You can download the Maps Getting Started sample from [GitHub](https://github.com/SyncfusionExamples/.NET-MAUI-Maps-Getting-Started). N> -* You can refer to our [.NET MAUI Maps](https://www.syncfusion.com/maui-controls/maui-maps) feature tour page for its groundbreaking feature representations. You can also explore our [.NET MAUI Maps Example](https://github.com/syncfusion/maui-demos/tree/master/MAUI/Maps) that shows you how to render the Maps in .NET MAUI. \ No newline at end of file +* You can refer to our [.NET MAUI Maps](https://www.syncfusion.com/maui-controls/maui-maps) feature tour page for its groundbreaking feature representations. You can also explore our [.NET MAUI Maps Example](https://github.com/syncfusion/maui-demos/tree/master/MAUI/Maps) that shows you how to render the Maps in .NET MAUI. diff --git a/chart-sdk/maui/maps/legend.md b/chart-sdk/maui/maps/legend.md index fe67142c9..69c03bf02 100644 --- a/chart-sdk/maui/maps/legend.md +++ b/chart-sdk/maui/maps/legend.md @@ -1,15 +1,15 @@ --- layout: post -title: Legend in .NET MAUI Maps control | Syncfusion® -description: Learn all about the Legend feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize its appearance including text, icon and more. +title: Legend in .NET MAUI Maps | Syncfusion® +description: Legend in .NET MAUI Maps displays map data categories with customizable styles, helping users identify and interpret geographic information effectively. platform: chart-sdk control: SfMaps documentation: ug --- -# Legend in .NET MAUI Maps (SfMaps) +# Legend in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. Using a legend, you can provide clear information on the data plotted on the map. diff --git a/chart-sdk/maui/maps/markers.md b/chart-sdk/maui/maps/markers.md index 12396c37b..9e65cd6f9 100644 --- a/chart-sdk/maui/maps/markers.md +++ b/chart-sdk/maui/maps/markers.md @@ -1,7 +1,7 @@ --- layout: post -title: Markers in .NET MAUI Maps control | Syncfusion -description: Learn all about the Markers feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize its appearance, including text, icon and more. +title: Markers in .NET MAUI Maps | Syncfusion® +description: Markers in .NET MAUI Maps highlight geographic locations using customizable symbols, improving map visualization and location-based data representation. platform: chart-sdk control: SfMaps documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui maps, .net maui interactive map marker. Markers can be used to denote locations. It is possible to use the built-in symbols or display a custom control at a specific latitude and longitude on a map. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. To learn more about the .NET MAUI Maps markers, you can check the following video. diff --git a/chart-sdk/maui/maps/migration.md b/chart-sdk/maui/maps/migration.md index d657b314d..eacc83e18 100644 --- a/chart-sdk/maui/maps/migration.md +++ b/chart-sdk/maui/maps/migration.md @@ -1,13 +1,13 @@ ---- +--- layout: post -title: Migrate from Xamarin SfMaps to .NET MAUI Maps | Syncfusion® -description: Learn here all about Migrating from Syncfusion® Xamarin SfMaps to Syncfusion® .NET MAUI Maps control and more. +title: Migrate Xamarin.Forms SfMaps to .NET MAUI SfMaps | Syncfusion® +description: Migrate from Xamarin.Forms SfMaps to .NET MAUI SfMaps with updated APIs, improved performance, and modern mapping features for geographic visualization. platform: chart-sdk control: SfMaps documentation: ug --- -# Migrate from Xamarin.Forms SfMaps to .NET MAUI Maps +# Migrate from Xamarin.Forms SfMaps to .NET MAUI SfMaps To make the migration from the [Xamarin SfMaps](https://www.syncfusion.com/xamarin-ui-controls/xamarin-maps) to [.NET MAUI SfMaps](https://www.syncfusion.com/maui-controls/maui-maps) easier, most of the APIs from the Xamarin SfMaps are kept in the.NET MAUI SfMaps. However, some APIs have been renamed to maintain the consistency of API naming in the .NET MAUI SfMaps. Please find the difference in the following topics. diff --git a/chart-sdk/maui/maps/overview.md b/chart-sdk/maui/maps/overview.md index 9092a3960..391de849d 100644 --- a/chart-sdk/maui/maps/overview.md +++ b/chart-sdk/maui/maps/overview.md @@ -1,13 +1,13 @@ --- layout: post -title: Overview of .NET MAUI Maps Control | Syncfusion -description: Learn here all about the introduction of Syncfusion® .NET MAUI Maps (SfMaps) control, its features, and more. +title: About Syncfusion® .NET MAUI Maps Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Maps control, including map layers, markers, legends, shapes, and geographic visualization features. platform: chart-sdk control: SfMaps documentation: ug --- -# .NET MAUI Maps (SfMaps) Overview +# About Syncfusion® .NET MAUI Maps Control The Syncfusion® [.NET MAUI Maps](https://www.syncfusion.com/maui-controls/maui-maps) control is a powerful data visualization component that displays statistical information for a geographical area. It has highly interactive and customizable features such as selection, tooltip, legends, markers, bubbles, and color mapping. Using the Maps control, you can generate maps for population density, sales, political boundaries, weather, elections, and routes. @@ -22,25 +22,24 @@ The Syncfusion® [.NET MAUI Maps](https://www.syncfusion.com/maui-controls/maui- ## Key features -- **[Shape layer](https://help.syncfusion.com/maui/maps/shape)** allows visualizing geographical regions using GeoJSON or shapefile data. -- **[Data labels](https://help.syncfusion.com/maui/maps/data-labels)** allows displaying names or information for map shapes with intelligent layout handling. -- **[Markers](https://help.syncfusion.com/maui/maps/markers)** allows placing symbols or custom UI elements at specific latitude and longitude locations. -- **[Bubbles](https://help.syncfusion.com/maui/maps/bubble)** allows representing data values using varying sizes and colors of bubbles. -- **[Shape selection](https://help.syncfusion.com/maui/maps/selection)** allows highlighting specific regions and handling selection interactions. -- **[Legend](https://help.syncfusion.com/maui/maps/legend)** allows explaining the data representation used in the map for better understanding. -- **[Colors](https://help.syncfusion.com/maui/maps/shape#shape-color)** allows categorizing and styling regions based on underlying data values or ranges. -- **[Tooltip](https://help.syncfusion.com/maui/maps/tooltip)** allows displaying additional information for shapes, markers, and bubbles interactively. +- **[Shape layer](https://help.syncfusion.com/chart-sdk/maui/maps/shape)** allows visualizing geographical regions using GeoJSON or shapefile data. +- **[Data labels](https://help.syncfusion.com/chart-sdk/maui/maps/data-labels)** allows displaying names or information for map shapes with intelligent layout handling. +- **[Markers](https://help.syncfusion.com/chart-sdk/maui/maps/markers)** allows placing symbols or custom UI elements at specific latitude and longitude locations. +- **[Bubbles](https://help.syncfusion.com/chart-sdk/maui/maps/bubble)** allows representing data values using varying sizes and colors of bubbles. +- **[Shape selection](https://help.syncfusion.com/chart-sdk/maui/maps/selection)** allows highlighting specific regions and handling selection interactions. +- **[Legend](https://help.syncfusion.com/chart-sdk/maui/maps/legend)** allows explaining the data representation used in the map for better understanding. +- **[Colors](https://help.syncfusion.com/chart-sdk/maui/maps/shape#shape-color)** allows categorizing and styling regions based on underlying data values or ranges. +- **[Tooltip](https://help.syncfusion.com/chart-sdk/maui/maps/tooltip)** allows displaying additional information for shapes, markers, and bubbles interactively. ## Related controls -- [TreeMap](https://help.syncfusion.com/maui/treemap/overview) for displaying hierarchical and comparative data visualization. -- [DataGrid](https://help.syncfusion.com/maui/datagrid/overview) for managing and presenting location-based data in tabular format. -- [Cartesian Charts](https://help.syncfusion.com/maui/cartesian-charts/overview) for visualizing geographical or statistical data trends using interactive charts. +- [TreeMap](https://help.syncfusion.com/chart-sdk/maui/treemap/overview) for displaying hierarchical and comparative data visualization. +- [Cartesian Charts](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for visualizing geographical or statistical data trends using interactive charts. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/maps/getting-started) shows a step‑by‑step guide to begin using the Maps control. -- [Vector Layers](https://help.syncfusion.com/maui/maps/vector-layers/line-layer) lets you add line, polygon, or point layers to visualize geographic data clearly. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started) shows a step‑by‑step guide to begin using the Maps control. +- [Vector Layers](https://help.syncfusion.com/chart-sdk/maui/maps/vector-layers/line-layer) lets you add line, polygon, or point layers to visualize geographic data clearly. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/maps/selection.md b/chart-sdk/maui/maps/selection.md index 652c78318..e373f4740 100644 --- a/chart-sdk/maui/maps/selection.md +++ b/chart-sdk/maui/maps/selection.md @@ -1,7 +1,7 @@ --- layout: post -title: Shape Selection in .NET MAUI Maps control | Syncfusion® -description: Learn here all about the Shape Selection feature of Syncfusion® .NET MAUI Maps (SfMaps) control and more. +title: Shape Selection in .NET MAUI Maps | Syncfusion® +description: Shape Selection in .NET MAUI Maps allows map shapes to be highlighted on interaction, improving geographic data analysis and user engagement. platform: chart-sdk control: SfMaps documentation: ug @@ -11,7 +11,7 @@ documentation: ug You can select a shape to highlight that area on a map. You can use the event for performing any action during shape selection. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. ## Enable shape selection diff --git a/chart-sdk/maui/maps/shape-sublayer.md b/chart-sdk/maui/maps/shape-sublayer.md index 2e85ae7d9..d4af9a482 100644 --- a/chart-sdk/maui/maps/shape-sublayer.md +++ b/chart-sdk/maui/maps/shape-sublayer.md @@ -1,7 +1,7 @@ --- layout: post -title: Shape Sublayer in .NET MAUI Maps control | Syncfusion® -description: Learn here all about the Shape Sublayer feature of the Syncfusion® .NET MAUI Maps (SfMaps) control to customize their appearances and more. +title: Shape Sublayer in .NET MAUI Maps | Syncfusion® +description: Shape Sublayer in .NET MAUI Maps overlays additional shape data on maps, enabling visualization of multiple geographic layers within a single map view. platform: chart-sdk control: SfMaps documentation: ug @@ -11,7 +11,7 @@ documentation: ug The shape sublayer is where geographical rendering will happen for the sublayer. This is similar to the main [`MapShapeLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html) rendering. This section explains adding a shape sublayer on the shape layer. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. To learn more about the .NET MAUI Maps shape sub layer, you can check the following video. @@ -457,7 +457,7 @@ public class Model You can enable bubbles to the shape sublayer using the [`ShowBubbles`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeSublayer.html#Syncfusion_Maui_Maps_MapShapeSublayer_ShowBubbles) property. You can customize the bubbles appearance using the [`BubbleSettings`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeSublayer.html#Syncfusion_Maui_Maps_MapShapeSublayer_BubbleSettings) property. This property is used to specify the value based on which the bubble's size has to be rendered. -N> Refer to the [`Bubbles`](https://help.syncfusion.com/maui/maps/bubble) section, to know more about the bubbles customization. +N> Refer to the [`Bubbles`](https://help.syncfusion.com/chart-sdk/maui/maps/bubble) section, to know more about the bubbles customization. {% tabs %} @@ -569,7 +569,7 @@ You can enable tooltip for the shape sublayer using the [`ShowShapeTooltip`](htt N> It is applicable for shape layer. -N> Refer to the [`Tooltip`](https://help.syncfusion.com/maui/maps/tooltip) section to know more about the tooltip customization. +N> Refer to the [`Tooltip`](https://help.syncfusion.com/chart-sdk/maui/maps/tooltip) section to know more about the tooltip customization. {% tabs %} @@ -768,7 +768,7 @@ The [`ShapeSelected`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.M N> It is applicable for shape layer. -N> Refer to the [`Shape selection`](https://help.syncfusion.com/maui/maps/selection) section to know more about the selection feature. +N> Refer to the [`Shape selection`](https://help.syncfusion.com/chart-sdk/maui/maps/selection) section to know more about the selection feature. {% tabs %} @@ -878,8 +878,8 @@ You can show markers at any position on the map by providing latitude and longit N> It is applicable for both tile layer and shape layer. N> -* Refer to the [`Markers`](https://help.syncfusion.com/maui/maps/markers) section to know more about the marker feature. -* Refer to the [`Tooltip`](https://help.syncfusion.com/maui/maps/tooltip) section to know more about the tooltip feature. +* Refer to the [`Markers`](https://help.syncfusion.com/chart-sdk/maui/maps/markers) section to know more about the marker feature. +* Refer to the [`Tooltip`](https://help.syncfusion.com/chart-sdk/maui/maps/tooltip) section to know more about the tooltip feature. N> You can refer to our [.NET MAUI Maps](https://www.syncfusion.com/maui-controls/maui-maps) feature tour page for its groundbreaking feature representations. You can also explore our [.NET MAUI Maps Sublayer example](https://github.com/syncfusion/maui-demos/tree/master/MAUI/Maps) that shows how to configure a Maps in .NET MAUI. \ No newline at end of file diff --git a/chart-sdk/maui/maps/shape.md b/chart-sdk/maui/maps/shape.md index c94701e74..fa0a714f6 100644 --- a/chart-sdk/maui/maps/shape.md +++ b/chart-sdk/maui/maps/shape.md @@ -1,7 +1,7 @@ --- layout: post -title: Shape in .NET MAUI Maps control | Syncfusion® -description: Learn all about different shape appearance customization options of the Syncfusion® .NET MAUI Maps (SfMaps) control. +title: Shapes in .NET MAUI Maps | Syncfusion® +description: Shapes in .NET MAUI Maps display geographic regions using shape data, enabling interactive visualization and analysis of location-based information. platform: chart-sdk control: SfMaps documentation: ug @@ -12,7 +12,7 @@ keywords: .net maui maps, .net maui shape maps. This section explains shapes, how to map the data source, add shape layer map elements, and apply colors to them based on specific values in the .NET MAUI Maps. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. To learn more about the .NET MAUI Maps shape layer, you can check the following video. @@ -261,13 +261,13 @@ public class Model Add the basic maps elements such as data labels, legend, and tooltip as shown in the below code snippet. -* **[Data labels](https://help.syncfusion.com/maui/maps/data-labels)** - You can show data labels using the [`ShowDataLabels`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_ShowDataLabels) property and also, customize it using the [`DataLabelSettings`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_DataLabelSettings) property. +* **[Data labels](https://help.syncfusion.com/chart-sdk/maui/maps/data-labels)** - You can show data labels using the [`ShowDataLabels`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_ShowDataLabels) property and also, customize it using the [`DataLabelSettings`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_DataLabelSettings) property. -* **[Markers](https://help.syncfusion.com/maui/maps/markers)** - You can show markers at any position on the map by providing latitude and longitude position to the [`MapMarker`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapMarker.html), which is from the [`Markers`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLayer.html#Syncfusion_Maui_Maps_MapLayer_Markers) collection. +* **[Markers](https://help.syncfusion.com/chart-sdk/maui/maps/markers)** - You can show markers at any position on the map by providing latitude and longitude position to the [`MapMarker`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapMarker.html), which is from the [`Markers`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLayer.html#Syncfusion_Maui_Maps_MapLayer_Markers) collection. -* **[Legend](https://help.syncfusion.com/maui/maps/legend)** - You can enable legend using the [`Legend`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_Legend) property. The legend's text is displayed based on the [`ColorMapping.Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.ColorMapping.html#Syncfusion_Maui_Maps_ColorMapping_Text) property. It is possible to customize the legend text using the [`TextStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLegend.html#Syncfusion_Maui_Maps_MapLegend_TextStyle) property. +* **[Legend](https://help.syncfusion.com/chart-sdk/maui/maps/legend)** - You can enable legend using the [`Legend`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_Legend) property. The legend's text is displayed based on the [`ColorMapping.Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.ColorMapping.html#Syncfusion_Maui_Maps_ColorMapping_Text) property. It is possible to customize the legend text using the [`TextStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLegend.html#Syncfusion_Maui_Maps_MapLegend_TextStyle) property. -* **[Tooltip](https://help.syncfusion.com/maui/maps/tooltip)** - You can enable tooltip for the shapes using the [`ShowShapeTooltip`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_ShowShapeTooltip) property. It will be displayed when you interact with the shapes, i.e., while tapping on touch devices and hovering on mouse-enabled devices. +* **[Tooltip](https://help.syncfusion.com/chart-sdk/maui/maps/tooltip)** - You can enable tooltip for the shapes using the [`ShowShapeTooltip`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html#Syncfusion_Maui_Maps_MapShapeLayer_ShowShapeTooltip) property. It will be displayed when you interact with the shapes, i.e., while tapping on touch devices and hovering on mouse-enabled devices. {% tabs %} diff --git a/chart-sdk/maui/maps/tile-layer.md b/chart-sdk/maui/maps/tile-layer.md index 9f43d59b8..0347dcdb1 100644 --- a/chart-sdk/maui/maps/tile-layer.md +++ b/chart-sdk/maui/maps/tile-layer.md @@ -1,7 +1,7 @@ --- layout: post -title: Tile Layer in .NET MAUI Maps control | Syncfusion -description: Learn here all about the Tile Layer feature of the Syncfusion® .NET MAUI Maps (SfMaps) control to customize their appearances and more. +title: Tile Layer in .NET MAUI Maps | Syncfusion® +description: Tile Layer in .NET MAUI Maps displays map tiles from online or custom sources, enabling interactive and scalable map visualization. platform: chart-sdk control: SfMaps documentation: ug @@ -11,7 +11,7 @@ documentation: ug The tile layer renders the tiles returned from web map tile services such as Bing Maps, OpenStreetMaps, Google Maps, TomTom, etc. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. To learn more about the .NET MAUI Maps tile layer, you can check the following video. @@ -93,7 +93,7 @@ private async Task GenerateBing(MapTileLayer tileLayer) Our tile layer is not limited or specific to any tile providers mentioned here. It supports requesting tiles from any tile providers using the unique URL for respective tile providers and renders them. -For other map providers like TomTom, MapBox, etc., you can check the respective official websites and provide the URL in the format mentioned in the [`Setting URL template`](https://help.syncfusion.com/maui/maps/tile-layer#setting-url-template) section. +For other map providers like TomTom, MapBox, etc., you can check the respective official websites and provide the URL in the format mentioned in the [`Setting URL template`](https://help.syncfusion.com/chart-sdk/maui/maps/tile-layer#setting-url-template) section. Below is the example of adding TomTom map. You can get the TomTom API key from this [`link`](https://developer.tomtom.com/map-display-api/documentation/product-information/introduction). @@ -113,7 +113,7 @@ this.Content = map; You can set the center position by setting the [`MapTileLayer.Center`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html#Syncfusion_Maui_Maps_MapTileLayer_Center) property. It represents the center position of the map layer. -Based on the size of the [`SfMaps`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.html) control, [`Center`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html#Syncfusion_Maui_Maps_MapTileLayer_Center) and [`ZoomLevel`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapZoomPanBehavior.html#Syncfusion_Maui_Maps_MapZoomPanBehavior_ZoomLevel), the number of initial tiles needed in the viewport alone will be rendered. Refer this section for enabling [`zooming and panning`](https://help.syncfusion.com/maui/maps/zoom-pan). +Based on the size of the [`SfMaps`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.html) control, [`Center`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html#Syncfusion_Maui_Maps_MapTileLayer_Center) and [`ZoomLevel`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapZoomPanBehavior.html#Syncfusion_Maui_Maps_MapZoomPanBehavior_ZoomLevel), the number of initial tiles needed in the viewport alone will be rendered. Refer this section for enabling [`zooming and panning`](https://help.syncfusion.com/chart-sdk/maui/maps/zoom-pan). Defaults to [`MapLatLng`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLatLng.html)`(0.0, 0.0)`. @@ -213,7 +213,7 @@ tileLayer.DeleteTilesFromCache(); ## Markers -You can add markers in the tile layer. The procedure is very similar to the shape layer. Kindly refer to the [markers](https://help.syncfusion.com/maui/maps/markers) section. +You can add markers in the tile layer. The procedure is very similar to the shape layer. Kindly refer to the [markers](https://help.syncfusion.com/chart-sdk/maui/maps/markers) section. ## Event diff --git a/chart-sdk/maui/maps/tooltip.md b/chart-sdk/maui/maps/tooltip.md index aa00a2a11..4fd4b3f95 100644 --- a/chart-sdk/maui/maps/tooltip.md +++ b/chart-sdk/maui/maps/tooltip.md @@ -1,7 +1,7 @@ --- layout: post -title: Tooltip in .NET MAUI Maps control | Syncfusion -description: Learn here all about adding the Tooltip feature of Syncfusion® .NET MAUI Maps (SfMaps) control and more. +title: Tooltip in .NET MAUI Maps | Syncfusion® +description: Tooltip in .NET MAUI Maps displays detailed information for map elements on interaction, helping users understand and analyze geographic data. platform: chart-sdk control: SfMaps documentation: ug @@ -11,7 +11,7 @@ documentation: ug A tooltip indicates the shape, bubble, and marker information during the tap or hover interactions. This section demonstrates how to show tooltips for the shapes, bubbles, and markers in the maps and how to customize them. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. To learn more about the .NET MAUI Maps tooltip, you can check the following video. diff --git a/chart-sdk/maui/maps/vector-layers/arc-layer.md b/chart-sdk/maui/maps/vector-layers/arc-layer.md index 84fb77072..549acba42 100644 --- a/chart-sdk/maui/maps/vector-layers/arc-layer.md +++ b/chart-sdk/maui/maps/vector-layers/arc-layer.md @@ -1,15 +1,15 @@ --- layout: post -title: Adding Arc layer in .NET MAUI Maps control | Syncfusion -description: Learn here all about adding the Arc Layer feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize its appearance and more. +title: Arc Layer in .NET MAUI Maps | Syncfusion® +description: Arc Layer in .NET MAUI Maps visualizes connections between geographic locations using curved lines, enabling effective representation of spatial relationships. platform: MAUI control: SfMaps documentation: ug --- -# Arc Layer in .NET MAUI Maps (SfMaps) +# Arc Layer in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. The arc layer is a sublayer that renders a group of [`MapArc`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapArc.html) on a [`MapArcLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapArcLayer.html), which can be added as a sublayer of [`MapShapeLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html). This section explains how to add and customize arcs. diff --git a/chart-sdk/maui/maps/vector-layers/circle-layer.md b/chart-sdk/maui/maps/vector-layers/circle-layer.md index 6fc0a6e91..d1b4bc1d3 100644 --- a/chart-sdk/maui/maps/vector-layers/circle-layer.md +++ b/chart-sdk/maui/maps/vector-layers/circle-layer.md @@ -1,15 +1,15 @@ --- layout: post -title: Adding Circle Layer in .NET MAUI Maps control | Syncfusion -description: Learn here all about adding Circle Layer feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize its appearance and more. +title: Circle Layer in .NET MAUI Maps | Syncfusion® +description: Circle Layer in .NET MAUI Maps displays data using scalable circles, enabling effective visualization of geographic values and location-based information. platform: MAUI control: SfMaps documentation: ug --- -# Circle Layer in .NET MAUI Maps (SfMaps) +# Circle Layer in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. The circle layer is a sublayer that renders a group of [`MapCircle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapCircle.html) on a [`MapCircleLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapCircleLayer.html), which can be added as a sublayer of [`MapShapeLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html). This section explains how to add and customize circles. diff --git a/chart-sdk/maui/maps/vector-layers/line-layer.md b/chart-sdk/maui/maps/vector-layers/line-layer.md index 7fb65260f..b824ac48a 100644 --- a/chart-sdk/maui/maps/vector-layers/line-layer.md +++ b/chart-sdk/maui/maps/vector-layers/line-layer.md @@ -1,15 +1,15 @@ --- layout: post -title: Lines in .NET MAUI Maps control | Syncfusion -description: Learn here all about adding the Line Layer feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize its appearance and more. +title: Lines Layer in .NET MAUI Maps | Syncfusion® +description: Lines Layer in .NET MAUI Maps displays connections between geographic locations using line segments, enabling visualization of routes and spatial relationships. platform: MAUI control: SfMaps documentation: ug --- -# Lines in .NET MAUI Maps (SfMaps) +# Lines Layer in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. The line layer is a sublayer that renders a group of [`MapLine`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLine.html) on a [`MapLineLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapLineLayer.html), which can be added as a sublayer of [`MapShapeLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html). This section explains how to add and customize lines. diff --git a/chart-sdk/maui/maps/vector-layers/polygon-layer.md b/chart-sdk/maui/maps/vector-layers/polygon-layer.md index a1e55dbb1..c9b6ad9fc 100644 --- a/chart-sdk/maui/maps/vector-layers/polygon-layer.md +++ b/chart-sdk/maui/maps/vector-layers/polygon-layer.md @@ -1,15 +1,15 @@ --- layout: post -title: Adding polygons in .NET MAUI Maps control | Syncfusion -description: Learn here all about adding the Polygons feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize its appearance and more. +title: Polygons Layer in .NET MAUI Maps | Syncfusion® +description: Polygons Layer in .NET MAUI Maps displays geographic regions using polygon shapes, enabling visualization and analysis of area-based spatial data. platform: MAUI control: SfMaps documentation: ug --- -# Polygons in .NET MAUI Maps (SfMaps) +# Polygons Layer in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **Maps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. The polygon layer is a sublayer that renders a group of [`MapPolygon`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapPolygon.html) on a [`MapPolygonLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapPolygonLayer.html), which can be added as a sublayer of [`MapShapeLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html). This section explains how to add and customize polygons. diff --git a/chart-sdk/maui/maps/vector-layers/polyline-layer.md b/chart-sdk/maui/maps/vector-layers/polyline-layer.md index 4a255556d..d22fc5bb7 100644 --- a/chart-sdk/maui/maps/vector-layers/polyline-layer.md +++ b/chart-sdk/maui/maps/vector-layers/polyline-layer.md @@ -1,15 +1,15 @@ --- layout: post -title: Adding Polylines in .NET MAUI Maps control | Syncfusion -description: Learn here all about adding the Polylines feature of Syncfusion® .NET MAUI Maps (SfMaps) control to customize their appearances and more. +title: Polylines Layer in .NET MAUI Maps | Syncfusion® +description: Polylines Layer in .NET MAUI Maps displays connected line paths between geographic locations, enabling visualization of routes and spatial relationships. platform: MAUI control: SfMaps documentation: ug --- -# Polylines in .NET MAUI Maps (SfMaps) +# Polylines Layer in .NET MAUI Maps -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. The polyline layer is a sublayer that renders a group of [`MapPolyline`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapPolyline.html) on [`MapShapeLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapShapeLayer.html). This section explains how to add and customize polylines. diff --git a/chart-sdk/maui/maps/zoom-pan.md b/chart-sdk/maui/maps/zoom-pan.md index 99e105384..a7123508c 100644 --- a/chart-sdk/maui/maps/zoom-pan.md +++ b/chart-sdk/maui/maps/zoom-pan.md @@ -1,7 +1,7 @@ --- layout: post -title: Zooming and Panning in .NET MAUI Maps Control | Syncfusion -description: Learn here all about the Zooming and Panning feature of the Syncfusion® .NET MAUI Maps (SfMaps) control to customize their appearances and more. +title: Zooming and Panning in .NET MAUI Maps | Syncfusion® +description: Zooming and Panning in .NET MAUI Maps enable interactive navigation across map content, making it easier to explore and analyze geographic data. platform: chart-sdk control: SfMaps documentation: ug @@ -13,7 +13,7 @@ You can zoom in and out on any layer to take a closer look at a specific region The procedure for zooming and panning for both layers is very similar. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/maps/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfMaps** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/maps/getting-started)** guide. To learn more about the .NET MAUI Maps zoom and pan, you can check the following video. diff --git a/chart-sdk/maui/radial-gauge/animation.md b/chart-sdk/maui/radial-gauge/animation.md index 9a17d5249..0f98f0604 100644 --- a/chart-sdk/maui/radial-gauge/animation.md +++ b/chart-sdk/maui/radial-gauge/animation.md @@ -1,7 +1,7 @@ --- layout: post -title: Animation in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about Animation feature of Syncfusion® .NET MAUI Radial Gauge control with pointer animation support and more. +title: Animation in .NET MAUI Radial Gauge | Syncfusion® +description: Animation in .NET MAUI Radial Gauge provides smooth transitions for gauge elements, improving visual feedback and enhancing the overall user experience. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -13,7 +13,7 @@ documentation: ug The radial gauge allows all of its elements to be animated using the [`EnableLoadingAnimation`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.RadialAxis.html#Syncfusion_Maui_Gauges_RadialAxis_EnableLoadingAnimation) property. The default value of this property is `false`. The duration of the loading animation can be controlled by using the [`AnimationDuration`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.RadialAxis.html#Syncfusion_Maui_Gauges_RadialAxis_AnimationDuration) property of the [`RadialAxis`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.RadialAxis.html). The default value of [`AnimationDuration`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.RadialAxis.html#Syncfusion_Maui_Gauges_RadialAxis_AnimationDuration) is `1500` milliseconds. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/radial-gauge/annotation.md b/chart-sdk/maui/radial-gauge/annotation.md index 7566f1017..53339e3a9 100644 --- a/chart-sdk/maui/radial-gauge/annotation.md +++ b/chart-sdk/maui/radial-gauge/annotation.md @@ -1,7 +1,7 @@ --- layout: post -title: Annotation in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about Annotation feature of Syncfusion® .NET MAUI Radial Gauge control with positioning support and more. +title: Annotation in .NET MAUI Radial Gauge | Syncfusion® +description: Annotation in .NET MAUI Radial Gauge displays custom content within the gauge, enabling additional information and enhanced visual presentation. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -23,7 +23,7 @@ The following properties are available in [`Annotation`](https://help.syncfusion * [`VerticalAlignment`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeAnnotation.html#Syncfusion_Maui_Gauges_GaugeAnnotation_VerticalAlignment), of the [`GaugeAlignment`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.GaugeAlignment.html) enum, specifies the vertical alignment for positioning the annotation. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/radial-gauge/axes.md b/chart-sdk/maui/radial-gauge/axes.md index 4507821e9..f840f0d6b 100644 --- a/chart-sdk/maui/radial-gauge/axes.md +++ b/chart-sdk/maui/radial-gauge/axes.md @@ -1,7 +1,7 @@ --- layout: post -title: Axis in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about the Axis feature of Syncfusion® .NET MAUI Radial Gauge (SfRadialGauge) control using the custom scale support. +title: Axis in .NET MAUI Radial Gauge | Syncfusion® +description: Axis in .NET MAUI Radial Gauge defines the gauge scale and supports customizable ranges, labels, ticks, and styling for effective value representation. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,7 +11,7 @@ documentation: ug The [`Radial Axis`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.RadialAxis.html) is a circular arc in which a set of values are displayed along a linear or custom scale based on the design requirements. Axis elements such as labels, ticks, and the axis line can be easily customized. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. ## Axis customization @@ -1273,7 +1273,7 @@ N> The [`OffsetUnit`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges ## Multiple axis -The [`radial gauge`](https://help.syncfusion.com/maui/radial-gauge/overview) allows you to add any number of radial axes to its [`Axes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfRadialGauge.html#Syncfusion_Maui_Gauges_SfRadialGauge_Axes) collection. You can also customize each axis added to the collection independently. +The [`radial gauge`](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/overview) allows you to add any number of radial axes to its [`Axes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfRadialGauge.html#Syncfusion_Maui_Gauges_SfRadialGauge_Axes) collection. You can also customize each axis added to the collection independently. {% tabs %} diff --git a/chart-sdk/maui/radial-gauge/content-pointer.md b/chart-sdk/maui/radial-gauge/content-pointer.md index 42e60bbb5..b512be45a 100644 --- a/chart-sdk/maui/radial-gauge/content-pointer.md +++ b/chart-sdk/maui/radial-gauge/content-pointer.md @@ -1,7 +1,7 @@ --- layout: post -title: Content Pointer in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about Content Pointer feature of the Syncfusion® .NET MAUI Radial Gauge control, including image, text pointer support and more. +title: Content Pointers in .NET MAUI Radial Gauge | Syncfusion® +description: Content Pointers in .NET MAUI Radial Gauge display custom content as pointers, enabling flexible value representation and enhanced gauge visualization. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,7 +11,7 @@ documentation: ug The [`ContentPointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.ContentPointer.html) in [`SfRadialGauge`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.SfRadialGauge.html) allows you to use any .NET MAUI content as a pointer. The following code sample uses a `RoundRectangle` and a `Label` as the content pointer. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/radial-gauge/getting-started.md b/chart-sdk/maui/radial-gauge/getting-started.md index 0ce8d7b21..92a8feca1 100644 --- a/chart-sdk/maui/radial-gauge/getting-started.md +++ b/chart-sdk/maui/radial-gauge/getting-started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about getting started with Syncfusion® .NET MAUI Radial Gauge (SfRadialGauge) control and more. +title: Getting Started with .NET MAUI Radial Gauge | Syncfusion® +description: Learn how to get started with the Syncfusion® .NET MAUI Radial Gauge control. Explore setup, axes, pointers, ranges, annotations, and customization features. platform: chart-sdk control: SfRadialGauge documentation: ug diff --git a/chart-sdk/maui/radial-gauge/migration.md b/chart-sdk/maui/radial-gauge/migration.md index a6dc0f074..a9f109c37 100644 --- a/chart-sdk/maui/radial-gauge/migration.md +++ b/chart-sdk/maui/radial-gauge/migration.md @@ -1,7 +1,7 @@ --- layout: post -title: Migrate from Xamarin to .NET MAUI Radial Gauge | Syncfusion® -description: Learn here all about migrating from the Syncfusion Xamarin SfCircularGauge to the Syncfusion® .NET MAUI SfRadialGauge control and more. +title: Migrate SfCircularGauge to .NET MAUI SfRadialGauge | Syncfusion® +description: Migrate from Xamarin.Forms SfCircularGauge to .NET MAUI SfRadialGauge with updated APIs, improved performance, and modern gauge visualization features. platform: chart-sdk control: SfRadialGauge documentation: ug diff --git a/chart-sdk/maui/radial-gauge/needle-pointer.md b/chart-sdk/maui/radial-gauge/needle-pointer.md index 5c1590016..73f3f5e10 100644 --- a/chart-sdk/maui/radial-gauge/needle-pointer.md +++ b/chart-sdk/maui/radial-gauge/needle-pointer.md @@ -1,7 +1,7 @@ --- layout: post -title: Needle Pointer in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about the Needle Pointer feature of Syncfusion® .NET MAUI Radial Gauge control using the customization support. +title: Needle Pointer in .NET MAUI Radial Gauge | Syncfusion® +description: Needle Pointer in .NET MAUI Radial Gauge indicates values using a needle-shaped pointer, enabling precise measurement and intuitive gauge visualization. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,7 +11,7 @@ documentation: ug The [`Needle Pointer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.NeedlePointer.html) contains three parts, namely needle, knob, and tail, and can be placed on a gauge to mark values. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/radial-gauge/overview.md b/chart-sdk/maui/radial-gauge/overview.md index 224087ab9..e4e31c2f9 100644 --- a/chart-sdk/maui/radial-gauge/overview.md +++ b/chart-sdk/maui/radial-gauge/overview.md @@ -1,13 +1,13 @@ --- layout: post -title: About .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about introduction of Syncfusion® .NET MAUI Radial Gauge(SfRadialGauge) control with key features and more. +title: About Syncfusion® .NET MAUI Radial Gauge Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI Radial Gauge control, including axes, pointers, ranges, annotations, and customization features. platform: chart-sdk control: SfRadialGauge documentation: ug --- -# Overview of .NET MAUI Radial Gauge +# About Syncfusion® .NET MAUI Radial Gauge Control The Syncfusion® [.NET MAUI Radial Gauge](https://www.syncfusion.com/maui-controls/maui-radial-gauge) is a multi-purpose data visualization control, that displays numerical values on a circular scale. It has a rich set of features such as axes, ranges, pointers, and annotations that are fully customizable and extendable. Use it to create speedometers, temperature monitors, dashboards, meter gauges, multi axis clocks, watches, progress indicators, compasses, and more. @@ -69,7 +69,7 @@ The following table summarizes the globalization support available in this contr - + @@ -80,15 +80,15 @@ The following table summarizes the globalization support available in this contr ## Related controls -- [Linear Gauge](https://help.syncfusion.com/maui/linear-gauge/overview) for displaying values along a linear scale. -- [Circular Charts](https://help.syncfusion.com/maui/circular-charts/overview) for visualizing proportional data using circular charts. -- [Digital Gauge](https://help.syncfusion.com/maui/digitalgauge/overview) for displaying numeric or character values using segmented digital display styles. +- [Linear Gauge](https://help.syncfusion.com/chart-sdk/maui/linear-gauge/overview) for displaying values along a linear scale. +- [Circular Charts](https://help.syncfusion.com/chart-sdk/maui/circular-charts/overview) for visualizing proportional data using circular charts. +- [Digital Gauge](https://help.syncfusion.com/chart-sdk/maui/digitalgauge/overview) for displaying numeric or character values using segmented digital display styles. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started) shows a step‑by‑step guide to begin using the Radial Gauge control. -- [Pointers](https://help.syncfusion.com/maui/radial-gauge/pointers) explains how to configure different pointer types and behavior. -- [Annotation](https://help.syncfusion.com/maui/radial-gauge/annotation) helps add labels, shapes, or custom content inside the gauge for context. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started) shows a step‑by‑step guide to begin using the Radial Gauge control. +- [Pointers](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/pointers) explains how to configure different pointer types and behavior. +- [Annotation](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/annotation) helps add labels, shapes, or custom content inside the gauge for context. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/radial-gauge/pointers.md b/chart-sdk/maui/radial-gauge/pointers.md index 3e805974c..042303a90 100644 --- a/chart-sdk/maui/radial-gauge/pointers.md +++ b/chart-sdk/maui/radial-gauge/pointers.md @@ -1,7 +1,7 @@ --- layout: post -title: Pointers in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about the Pointers feature of Syncfusion® .NET MAUI Radial Gauge control with multiple pointer support and more. +title: Pointers in .NET MAUI Radial Gauge | Syncfusion® +description: Pointers in .NET MAUI Radial Gauge indicate values along the gauge axis using different pointer types, enabling accurate and effective data visualization. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,14 +11,14 @@ documentation: ug A pointer is used to indicate values on an axis. The radial gauge control has the following types of pointers: -* [`Shape pointer`](https://help.syncfusion.com/maui/radial-gauge/shape-pointer) -* [`Content pointer`](https://help.syncfusion.com/maui/radial-gauge/content-pointer) -* [`Needle pointer`](https://help.syncfusion.com/maui/radial-gauge/needle-pointer) -* [`Range pointer`](https://help.syncfusion.com/maui/radial-gauge/range-pointer) +* [`Shape pointer`](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/shape-pointer) +* [`Content pointer`](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/content-pointer) +* [`Needle pointer`](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/needle-pointer) +* [`Range pointer`](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/range-pointer) All the pointers can be customized as needed. You can add multiple pointers to the gauge to point to multiple values on the same scale. The value of the pointer is set using the [`Value`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.RadialPointer.html#Syncfusion_Maui_Gauges_RadialPointer_Value) property. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. ![Pointers in .NET MAUI Radial Gauge](images/pointers/maui-radial-gauge-pointers.png) diff --git a/chart-sdk/maui/radial-gauge/range-pointer.md b/chart-sdk/maui/radial-gauge/range-pointer.md index f0f468c56..ec5236346 100644 --- a/chart-sdk/maui/radial-gauge/range-pointer.md +++ b/chart-sdk/maui/radial-gauge/range-pointer.md @@ -1,7 +1,7 @@ --- layout: post -title: Range Pointer in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about the Range Pointer feature of Syncfusion® .NET MAUI Radial Gauge control with customization support. +title: Range Pointer in .NET MAUI Radial Gauge | Syncfusion® +description: Range Pointer in .NET MAUI Radial Gauge highlights values using a filled arc along the gauge axis, enabling clear progress tracking and value visualization. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,7 +11,7 @@ documentation: ug A range pointer is an accenting line or shaded background range that can be placed on a gauge to mark the current value. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/radial-gauge/ranges.md b/chart-sdk/maui/radial-gauge/ranges.md index 84e0f0e4c..0ef289b89 100644 --- a/chart-sdk/maui/radial-gauge/ranges.md +++ b/chart-sdk/maui/radial-gauge/ranges.md @@ -1,7 +1,7 @@ --- layout: post -title: Radial Range in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about the Range feature of Syncfusion® .NET MAUI Radial Gauge control with customization support and more. +title: Radial Range in .NET MAUI Radial Gauge | Syncfusion® +description: Radial Range in .NET MAUI Radial Gauge highlights specific value intervals on the gauge axis, improving data visualization and emphasizing important thresholds. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,7 +11,7 @@ documentation: ug A radial range is a visual element that helps to quickly visualize where a value falls on the axis. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. ## Setting start and end values diff --git a/chart-sdk/maui/radial-gauge/shape-pointer.md b/chart-sdk/maui/radial-gauge/shape-pointer.md index 4f2127a4e..6ae0317d8 100644 --- a/chart-sdk/maui/radial-gauge/shape-pointer.md +++ b/chart-sdk/maui/radial-gauge/shape-pointer.md @@ -1,7 +1,7 @@ --- layout: post -title: Shape Pointer in .NET MAUI Radial Gauge control | Syncfusion® -description: Learn here all about the Shape Pointer feature of Syncfusion® .NET MAUI Radial Gauge control with built-in shapes. +title: Shape Pointer in .NET MAUI Radial Gauge | Syncfusion® +description: Shape Pointer in .NET MAUI Radial Gauge displays values using customizable pointer shapes, enabling clear value indication and enhanced gauge visualization. platform: chart-sdk control: SfRadialGauge documentation: ug @@ -11,7 +11,7 @@ documentation: ug Indicate current values by using different types of shape pointers. You can change the shape type using the [`ShapeType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Gauges.ShapeType.html) property. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/radial-gauge/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **SfRadialGauge** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/radial-gauge/getting-started)** guide. {% tabs %} diff --git a/chart-sdk/maui/treemap/accessibility.md b/chart-sdk/maui/treemap/accessibility.md index e7f2b3a43..46e5ee9c4 100644 --- a/chart-sdk/maui/treemap/accessibility.md +++ b/chart-sdk/maui/treemap/accessibility.md @@ -1,19 +1,19 @@ --- layout: post -title: Accessibility in .NET MAUI TreeMap (SfTreeMap) Control | Syncfusion® -description: Learn here about performing actions using accessibility in Syncfusion® .NET MAUI TreeMap (SfTreeMap) control. +title: Accessibility in .NET MAUI TreeMap | Syncfusion® +description: Accessibility in .NET MAUI TreeMap provides support for keyboard navigation, screen readers, and assistive technologies, improving usability for all users. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Accessibility in .NET MAUI TreeMap (SfTreeMap) +# Accessibility in .NET MAUI TreeMap The .NET MAUI TreeMap (SfTreeMap) control supports keyboard navigation and provides accessible descriptions of its items for assistive technologies such as Narrator and VoiceOver. This topic covers the keyboard shortcuts available in the control and explains how selection behavior interacts with keyboard focus. Keyboard navigation is enabled by default; no additional configuration is required to move focus between items. To interact with the control using the keyboard, first set focus on the TreeMap (for example, by clicking an item or by tabbing to the control from the previous focusable element). Keyboard shortcuts are supported on Windows and macOS only. On Android and iOS, the keyboard shortcuts have no effect and interaction is performed through touch gestures. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Keyboard shortcuts in .NET MAUI TreeMap (SfTreeMap) diff --git a/chart-sdk/maui/treemap/brush-settings.md b/chart-sdk/maui/treemap/brush-settings.md index 48b2d2f06..583512d0e 100644 --- a/chart-sdk/maui/treemap/brush-settings.md +++ b/chart-sdk/maui/treemap/brush-settings.md @@ -1,15 +1,15 @@ --- layout: post -title: Brush Settings in .NET MAUI TreeMap Control | Syncfusion® -description: Learn here how to apply brush settings for tree map items in Syncfusion® .NET MAUI TreeMap control, enhancing the tree map visualization. +title: Brush Settings in .NET MAUI TreeMap | Syncfusion® +description: Brush Settings in .NET MAUI TreeMap customize item colors using solid, gradient, and palette brushes, improving visual distinction and data presentation. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Brush Settings in .NET MAUI TreeMap (SfTreeMap) +# Brush Settings in .NET MAUI TreeMap -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Leaf Item Brush Settings diff --git a/chart-sdk/maui/treemap/drilldown.md b/chart-sdk/maui/treemap/drilldown.md index 36739bdeb..02b5c8d84 100644 --- a/chart-sdk/maui/treemap/drilldown.md +++ b/chart-sdk/maui/treemap/drilldown.md @@ -1,17 +1,17 @@ --- layout: post -title: Drilldown support in .NET MAUI TreeMap Control | Syncfusion® -description: Learn here all about Drilldown feature and the header customization of Syncfusion® .NET MAUI TreeMap (SfTreeMap) control and more. +title: Drilldown in .NET MAUI TreeMap | Syncfusion® +description: Drilldown in .NET MAUI TreeMap enables interactive navigation through hierarchical data, allowing deeper exploration of grouped items and levels. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Drilldown in .NET MAUI TreeMap (SfTreeMap) +# Drilldown in .NET MAUI TreeMap The drilldown feature in the .NET MAUI TreeMap provides a better visualization of hierarchical data by breaking a large dataset down into smaller, focused views. Each level of items can be drilled into, and the control animates the transition between levels during drilldown. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. N> Drilldown requires at least one [TreeMapLevel](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.TreeMapLevel.html) to be configured in the `Levels` collection. For more information about levels, refer to the [Levels](levels.md) documentation. diff --git a/chart-sdk/maui/treemap/events.md b/chart-sdk/maui/treemap/events.md index c454738cf..f0fc074dc 100644 --- a/chart-sdk/maui/treemap/events.md +++ b/chart-sdk/maui/treemap/events.md @@ -1,15 +1,15 @@ --- layout: post -title: Events in .NET MAUI TreeMap (SfTreeMap) Control | Syncfusion® -description: Learn here all about the Events support in the Syncfusion® .NET MAUI TreeMap (SfTreeMap) control and more. +title: Events in .NET MAUI TreeMap | Syncfusion® +description: Events in .NET MAUI TreeMap provide notifications for user interactions and control actions, enabling customized behavior and interactive experiences. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Events in .NET MAUI TreeMap (SfTreeMap) +# Events in .NET MAUI TreeMap -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## SelectionChanged event diff --git a/chart-sdk/maui/treemap/getting-started.md b/chart-sdk/maui/treemap/getting-started.md index 8c11f0422..0184fc468 100644 --- a/chart-sdk/maui/treemap/getting-started.md +++ b/chart-sdk/maui/treemap/getting-started.md @@ -1,13 +1,13 @@ --- layout: post title: Getting Started with .NET MAUI TreeMap | Syncfusion® -description: Learn about getting started with Syncfusion® .NET MAUI TreeMap (SfTreeMap) in mobile and desktop applications from a single shared codebase. +description: Learn how to get started with the Syncfusion® .NET MAUI TreeMap control. Explore setup, hierarchical data visualization, customization, and key features. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Getting Started with the .NET MAUI TreeMap +# Getting Started with .NET MAUI TreeMap This section provides a quick overview of how to get started with the [.NET MAUI SfTreeMap](https://www.syncfusion.com/maui-controls/maui-tree-map) and a walk-through to configure the .NET MAUI TreeMap in a real-time scenario. Follow the steps below to add the .NET MAUI TreeMap control to your project. diff --git a/chart-sdk/maui/treemap/layouts.md b/chart-sdk/maui/treemap/layouts.md index 0d95ac0de..1274017ee 100644 --- a/chart-sdk/maui/treemap/layouts.md +++ b/chart-sdk/maui/treemap/layouts.md @@ -1,17 +1,17 @@ --- layout: post -title: Layout Types in .NET MAUI TreeMap (SfTreeMap) Control | Syncfusion® -description: Learn here all about adding different layouts of the Syncfusion® .NET MAUI TreeMap (SfTreeMap) control and more. +title: Layouts in .NET MAUI TreeMap | Syncfusion® +description: Layouts in .NET MAUI TreeMap determine how hierarchical data is arranged, enabling clear visualization through different layout algorithms and structures. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Layouts in .NET MAUI TreeMap (SfTreeMap) +# Layouts in .NET MAUI TreeMap The TreeMap control provides multiple layout types for organizing hierarchical data effectively. You can utilize the [LayoutType](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.SfTreeMap.html#Syncfusion_Maui_TreeMap_SfTreeMap_LayoutType) property within the [SfTreeMap](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.SfTreeMap.html) to switch between four distinct layouts: [Squarified](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.LayoutType.html#Syncfusion_Maui_TreeMap_LayoutType_Squarified), [SliceAndDiceAuto](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.LayoutType.html#Syncfusion_Maui_TreeMap_LayoutType_SliceAndDiceAuto), [SliceAndDiceHorizontal](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.LayoutType.html#Syncfusion_Maui_TreeMap_LayoutType_SliceAndDiceHorizontal), and [SliceAndDiceVertical](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.LayoutType.html#Syncfusion_Maui_TreeMap_LayoutType_SliceAndDiceVertical). -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Squarified diff --git a/chart-sdk/maui/treemap/leaf-item-settings.md b/chart-sdk/maui/treemap/leaf-item-settings.md index 4bcfe6bab..50ed8b272 100644 --- a/chart-sdk/maui/treemap/leaf-item-settings.md +++ b/chart-sdk/maui/treemap/leaf-item-settings.md @@ -1,17 +1,17 @@ --- layout: post title: Leaf Item Settings in .NET MAUI TreeMap | Syncfusion® -description: Learn about leaf items in Syncfusion® .NET MAUI TreeMap, including key features and functionalities for effective and insightful TreeMap visualization. +description: Leaf Item Settings in .NET MAUI TreeMap customize the appearance and behavior of leaf nodes, improving data representation and visual clarity. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Leaf Item Settings in .NET MAUI TreeMap (SfTreeMap) +# Leaf Item Settings in .NET MAUI TreeMap A leaf item in the TreeMap represents a visualized data element. It does not contain child items but may have a parent item if levels are specified in the TreeMap control. It also allows you to customize the spacing between items, stroke color, stroke width, text style, and text format option in the TreeMap control. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Add Labels diff --git a/chart-sdk/maui/treemap/legend.md b/chart-sdk/maui/treemap/legend.md index 974631784..aa53572bc 100644 --- a/chart-sdk/maui/treemap/legend.md +++ b/chart-sdk/maui/treemap/legend.md @@ -1,7 +1,7 @@ --- layout: post -title: Legend in .NET MAUI TreeMap Control | Syncfusion® -description: Learn here all about how to customize the appearance of legend items in Syncfusion® .NET MAUI TreeMap control by changing text color, icon size, and more. +title: Legend in .NET MAUI TreeMap | Syncfusion® +description: Legend in .NET MAUI TreeMap displays hierarchical data categories with customizable styles, helping users identify and interpret TreeMap data effectively. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug @@ -11,7 +11,7 @@ documentation: ug The legend provides valuable information for interpreting TreeMap displays by presenting data through various colors, shapes, and other identifiers. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Enable legend diff --git a/chart-sdk/maui/treemap/levels.md b/chart-sdk/maui/treemap/levels.md index d8946c239..e65453796 100644 --- a/chart-sdk/maui/treemap/levels.md +++ b/chart-sdk/maui/treemap/levels.md @@ -1,15 +1,15 @@ --- layout: post -title: Understanding Levels in .NET MAUI TreeMap | Syncfusion® -description: Learn about the levels within Syncfusion® .NET MAUI TreeMap control, exploring its fundamental features and functionalities for effective treemap visualization. +title: Levels in .NET MAUI TreeMap | Syncfusion® +description: Levels in .NET MAUI TreeMap organize hierarchical data into grouped categories, enabling structured visualization and improved data interpretation. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Levels in .NET MAUI TreeMap (SfTreeMap) +# Levels in .NET MAUI TreeMap -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. Levels in .NET MAUI TreeMap allow for hierarchical data visualization, enabling multi-level categorization and exploration of complex datasets. The TreeMap supports n number of levels and each level is separated using the [GroupPath](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.TreeMapLevel.html#Syncfusion_Maui_TreeMap_TreeMapLevel_GroupPath) property. diff --git a/chart-sdk/maui/treemap/migration.md b/chart-sdk/maui/treemap/migration.md index e4f6256f1..8248bbc18 100644 --- a/chart-sdk/maui/treemap/migration.md +++ b/chart-sdk/maui/treemap/migration.md @@ -1,13 +1,13 @@ --- layout: post -title: Migrate from Xamarin to .NET MAUI TreeMap (SfTreeMap) | Syncfusion® -description: Learn about Migrating from Syncfusion® Xamarin.Forms TreeMap control to .NET MAUI TreeMap (SfTreeMap) control. +title: Migrate Xamarin.Forms SfTreeMap to .NET MAUI SfTreeMap | Syncfusion® +description: Migrate from Xamarin.Forms TreeMap to .NET MAUI TreeMap with updated APIs, improved performance, and modern features for hierarchical data visualization. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Migrate from Xamarin.Forms TreeMap to .NET MAUI TreeMap (SfTreeMap) +# Migrate from Xamarin.Forms SfTreeMap to .NET MAUI SfTreeMap To make the migration from the [Xamarin SfTreeMap](https://www.syncfusion.com/xamarin-ui-controls/xamarin-treemap) to the [.NET MAUI SfTreeMap](https://www.syncfusion.com/maui-controls/maui-tree-map) easier, most of the APIs from the [Xamarin SfTreeMap](https://www.syncfusion.com/xamarin-ui-controls/xamarin-treemap) to the [.NET MAUI SfTreeMap](https://www.syncfusion.com/maui-controls/maui-tree-map) were kept in the [.NET MAUI SfTreeMap](https://www.syncfusion.com/maui-controls/maui-tree-map). However, to maintain the consistency of API naming in the [.NET MAUI SfTreeMap](https://www.syncfusion.com/maui-controls/maui-tree-map), some of the APIs have been renamed. Please find the difference in the following topics. diff --git a/chart-sdk/maui/treemap/overview.md b/chart-sdk/maui/treemap/overview.md index 059312c02..0086829e3 100644 --- a/chart-sdk/maui/treemap/overview.md +++ b/chart-sdk/maui/treemap/overview.md @@ -1,13 +1,13 @@ --- layout: post -title: Overview of .NET MAUI TreeMap | Syncfusion -description: Learn about the introduction to Syncfusion® .NET MAUI TreeMap (SfTreeMap) control, its basic features, and the functionalities of treemap. +title: About Syncfusion® .NET MAUI TreeMap Control | Syncfusion® +description: Learn about the overview of Syncfusion® .NET MAUI TreeMap control, including hierarchical data visualization, layouts, legends, and customization features. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Overview of .NET MAUI TreeMap +# About Syncfusion® .NET MAUI TreeMap Control The Syncfusion® [.NET MAUI TreeMap](https://www.syncfusion.com/maui-controls/maui-tree-map) control allows you to visually represent hierarchical data with rectangles that are sized and colored based on underlying values. It efficiently displays grouped and nested data structures, offering various layout options, extensive customization options, and supports item selection, data binding to different sources, and more. @@ -72,26 +72,25 @@ The following table summarizes the globalization support available in this contr - + - + - - +
Keyboard navigation
Radial GaugeRadial Gauge no-support full-support no-supportKeyboard navigation
TreeMapTreeMap not-applicablefull-supportfull-support not-applicablefull-supportfull-supportfull-support
## Related Controls -- [Sunburst Chart](https://help.syncfusion.com/maui/sunburstchart/overview) for visualizing hierarchical data using a radial layout. -- [.NET MAUI Cartesian Chart](https://help.syncfusion.com/maui/cartesian-charts/overview) for analyzing data trends using axis-based charts. -- [Maps](https://help.syncfusion.com/maui/maps/overview) for visualizing location-based hierarchical data. +- [Sunburst Chart](https://help.syncfusion.com/chart-sdk/maui/sunburstchart/overview) for visualizing hierarchical data using a radial layout. +- [.NET MAUI Cartesian Chart](https://help.syncfusion.com/chart-sdk/maui/cartesian-charts/overview) for analyzing data trends using axis-based charts. +- [Maps](https://help.syncfusion.com/chart-sdk/maui/maps/overview) for visualizing location-based hierarchical data. ## See Also -- [Getting Started](https://help.syncfusion.com/maui/treemap/getting-started) shows a step‑by‑step guide to begin using the TreeMap control. -- [Layouts](https://help.syncfusion.com/maui/treemap/layouts) explains how to configure layout types and data arrangement. -- [Drilldown](https://help.syncfusion.com/maui/treemap/drilldown) helps dive into details by exploring data hierarchies step by step. +- [Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started) shows a step‑by‑step guide to begin using the TreeMap control. +- [Layouts](https://help.syncfusion.com/chart-sdk/maui/treemap/layouts) explains how to configure layout types and data arrangement. +- [Drilldown](https://help.syncfusion.com/chart-sdk/maui/treemap/drilldown) helps dive into details by exploring data hierarchies step by step. - [UI Kit](https://www.syncfusion.com/demos/maui#maui-ui-control) provides interactive demos and ready‑made UI examples. ## Resources diff --git a/chart-sdk/maui/treemap/right-to-left.md b/chart-sdk/maui/treemap/right-to-left.md index 8bb64b910..217ebfb3d 100644 --- a/chart-sdk/maui/treemap/right-to-left.md +++ b/chart-sdk/maui/treemap/right-to-left.md @@ -1,17 +1,17 @@ --- layout: post -title: Right to left (RTL) support in .NET MAUI TreeMap Control | Syncfusion® -description: Learn here all about the flow direction feature of Syncfusion® .NET MAUI TreeMap (SfTreeMap) control. +title: Right To Left in .NET MAUI TreeMap | Syncfusion® +description: Right To Left in .NET MAUI TreeMap supports RTL layouts for hierarchical data visualization, improving usability for right-to-left language users. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Right To Left in .NET MAUI TreeMap (SfTreeMap) +# Right To Left in .NET MAUI TreeMap SfTreeMap supports changing the flow to the right-to-left direction by setting the `FlowDirection` to RightToLeft. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. {% tabs %} {% highlight xaml hl_lines="4" %} diff --git a/chart-sdk/maui/treemap/selection-and-highlights.md b/chart-sdk/maui/treemap/selection-and-highlights.md index cc5c23946..5d3fcfc10 100644 --- a/chart-sdk/maui/treemap/selection-and-highlights.md +++ b/chart-sdk/maui/treemap/selection-and-highlights.md @@ -1,17 +1,17 @@ --- layout: post title: Selection and Highlights in .NET MAUI TreeMap | Syncfusion® -description: Learn about the functionality of selection and highlights within the Syncfusion® .NET MAUI TreeMap (SfTreeMap) control. +description: Selection and Highlights in .NET MAUI TreeMap allow TreeMap items to be selected and highlighted, improving data analysis and visual exploration. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Selection and Highlights in .NET MAUI TreeMap (SfTreeMap) +# Selection and Highlights in .NET MAUI TreeMap The TreeMap control enables users to select specific groups or items for distinction, with the tooltip feature providing additional information during interaction. However, when the [SelectionMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.SfTreeMap.html#Syncfusion_Maui_TreeMap_SfTreeMap_SelectionMode) is set to [None](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TreeMap.SelectionMode.html#Syncfusion_Maui_TreeMap_SelectionMode_None), interaction with treemap items is disabled. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Selection Mode diff --git a/chart-sdk/maui/treemap/tooltip.md b/chart-sdk/maui/treemap/tooltip.md index 09f0c6353..bcca07725 100644 --- a/chart-sdk/maui/treemap/tooltip.md +++ b/chart-sdk/maui/treemap/tooltip.md @@ -1,17 +1,17 @@ --- layout: post -title: Tooltip in .NET MAUI TreeMap Control | Syncfusion® -description: Learn here all about how to customize the appearance of tooltip in Syncfusion® .NET MAUI TreeMap control and more. +title: Tooltip in .NET MAUI TreeMap | Syncfusion® +description: Tooltip in .NET MAUI TreeMap displays detailed information for TreeMap items on interaction, helping users analyze and understand hierarchical data. platform: chart-sdk control: TreeMap (SfTreeMap) documentation: ug --- -# Tooltip in .NET MAUI TreeMap (SfTreeMap) +# Tooltip in .NET MAUI TreeMap The tooltip provides information when hovering over or selecting items in the interactive TreeMap, displaying details about the values of each item. -N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/maui/treemap/getting-started)** guide. +N> **Prerequisite:** Ensure that the required NuGet package is installed, the necessary namespaces are imported, and the **TreeMap** control is properly configured in your application. For detailed setup and configuration instructions, refer to the **[Getting Started](https://help.syncfusion.com/chart-sdk/maui/treemap/getting-started)** guide. ## Enable Tooltip diff --git a/chart-sdk/uwp/charts/3D-Charts.md b/chart-sdk/uwp/charts/3D-Charts.md index f82eb3e84..bc80250b7 100644 --- a/chart-sdk/uwp/charts/3D-Charts.md +++ b/chart-sdk/uwp/charts/3D-Charts.md @@ -1,13 +1,13 @@ --- layout: post -title: 3D Charts in UWP Charts control | Syncfusion -description: Learn here about how to add proper 3D Charts support that can be rotated in Syncfusion® UWP Charts(SfChart) control and more. +title: 3D Charts in UWP Chart | Syncfusion® +description: 3D charts in the UWP Chart visualize data with depth and perspective, supporting rotation and interactive exploration of chart data. platform: chart-sdk control: SfChart documentation: ug --- -# 3D Charts in UWP Charts (SfChart) +# 3D Charts in UWP Chart 3D charts are used to view two-dimensional data in a three-dimensional view, and can be rotated in all 3 dimensions to get the best possible view of the data. @@ -32,7 +32,7 @@ The following steps explain how to create 3D charts. {% highlight xaml %} - xmlns:Syncfusion="using:Syncfusion.UI.Xaml.Charts" +xmlns:Syncfusion="using:Syncfusion.UI.Xaml.Charts" {% endhighlight %} diff --git a/chart-sdk/wpf/SfChart3D/3DSeries.md b/chart-sdk/wpf/SfChart3D/3DSeries.md index 0a104ab0f..7890b3e45 100644 --- a/chart-sdk/wpf/SfChart3D/3DSeries.md +++ b/chart-sdk/wpf/SfChart3D/3DSeries.md @@ -1,13 +1,13 @@ --- layout: post -title: Series in WPF SfChart3D control | Syncfusion -description: Learn about Series support in Syncfusion Essential Studio® WPF SfChart3D control, its elements and more. +title: Series in WPF 3D Chart | Syncfusion® +description: Series in the WPF 3D Chart define how data is visualized, enabling different 3D chart types and data representations. platform: chart-sdk control: SfChart3D documentation: ug --- -# Series in WPF SfChart3D +# Series in WPF 3D Chart ChartSeries is the visual representation of the data. SfChart3D offers eight types of series. Based on your requirements and specifications, any type of series can be added for data visualization. @@ -41,8 +41,7 @@ The following APIs are common for most of the series types: - + YBindingPath="Metal"/> {% endhighlight %} @@ -191,8 +190,7 @@ chart3D.Series.Add(series1); - + YBindingPath="Metal"/> {% endhighlight %}