{
  "$schema": "https://ai.syncfusion.com/schema/registry-item.json",
  "name": "cartesian-chart-line",
  "framework": "maui",
  "type": "registry:component",
  "component": "cartesian-chart",
  "variant": "line",
  "dependencies": [
    "Syncfusion.Maui.Charts"
  ],
  "description": "LineSeries chart compares Germany and England inflation rates with markers, tooltips, and a toggle legend.",
  "meta": {
    "essentialStudioRelease": "2026 Volume 2 (v34.1.29)",
    "license": "commercial-or-community",
    "licenseNote": "The Syncfusion package is licensed. The composition in this file is source you own and edit. See https://ai.syncfusion.com/licensing.md",
    "requiresLicenseKey": true,
    "requiresServerEndpoint": false,
    "platformIndex": "https://ai.syncfusion.com/maui/llms.txt",
    "skillPack": "syncfusion/maui-ui-components-skills",
    "docs": "https://ai.syncfusion.com/gallery/maui/cartesian-chart-line.md"
  },
  "files": [
    {
      "target": "src/components/cartesian-chart-line/Chart.xaml",
      "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<ContentPage xmlns=\"http://schemas.microsoft.com/dotnet/2021/maui\"\n             xmlns:x=\"http://schemas.microsoft.com/winfx/2009/xaml\"\n             xmlns:model=\"clr-namespace:MAUI.Controls.CartesianChart.LineSeries\"\n             xmlns:chart=\"clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts\"\n             x:Class=\"MAUI.Controls.CartesianChart.LineSeries.LineSeriesView\"\n             x:DataType=\"model:LineSeriesViewModel\">\n\n    <chart:SfCartesianChart HorizontalOptions=\"Fill\" VerticalOptions=\"Fill\">\n\n        <chart:SfCartesianChart.Title>\n            <Label Text=\"Inflation - Consumer Prices\"\n                   FontSize=\"16\"\n                   HorizontalOptions=\"Fill\"\n                   HorizontalTextAlignment=\"Center\" />\n        </chart:SfCartesianChart.Title>\n\n        <chart:SfCartesianChart.Legend>\n            <chart:ChartLegend ToggleSeriesVisibility=\"True\" />\n        </chart:SfCartesianChart.Legend>\n\n        <chart:SfCartesianChart.XAxes>\n            <chart:CategoryAxis PlotOffsetStart=\"10\"\n                                PlotOffsetEnd=\"10\"\n                                ShowMajorGridLines=\"False\" />\n        </chart:SfCartesianChart.XAxes>\n\n        <chart:SfCartesianChart.YAxes>\n            <chart:NumericalAxis Minimum=\"0\" Maximum=\"100\" Interval=\"20\">\n                <chart:NumericalAxis.LabelStyle>\n                    <chart:ChartAxisLabelStyle LabelFormat=\"0'%'\" />\n                </chart:NumericalAxis.LabelStyle>\n            </chart:NumericalAxis>\n        </chart:SfCartesianChart.YAxes>\n\n        <chart:SfCartesianChart.Series>\n            <chart:LineSeries Label=\"Germany\"\n                              EnableTooltip=\"True\"\n                              ShowMarkers=\"True\"\n                              StrokeWidth=\"1\"\n                              ItemsSource=\"{Binding LineData1}\"\n                              XBindingPath=\"Name\"\n                              YBindingPath=\"Value\" />\n\n            <chart:LineSeries Label=\"England\"\n                              EnableTooltip=\"True\"\n                              ShowMarkers=\"True\"\n                              StrokeWidth=\"1\"\n                              ItemsSource=\"{Binding LineData2}\"\n                              XBindingPath=\"Name\"\n                              YBindingPath=\"Value\" />\n        </chart:SfCartesianChart.Series>\n    </chart:SfCartesianChart>\n</ContentPage>"
    }
  ]
}