Skip to content

Commit ac8367b

Browse files
committed
changes added
1 parent 3c01751 commit ac8367b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

maui/samples/Gallery/SampleList/CartesianChartSamplesList.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<SyncfusionControls>
33
<ControlCategory Name="Data Visualization">
4-
<Control Title="Cartesian Charts" ControlName="SfCartesianChart" Image="cartesianchart.png" Description="Plot over 20+ chart types with extensive features like data label, trackball and zooming.">
4+
<Control Title="Cartesian Charts" ControlName="SfCartesianChart" StatusTag="Updated" Image="cartesianchart.png" Description="Plot over 20+ chart types with extensive features like data label, trackball and zooming.">
55
<Category Title="Chart Types">
66
<SubCategory Title="Column">
77
<CardLayout>
@@ -57,7 +57,7 @@
5757
</CardLayout>
5858
</SubCategory>
5959

60-
<Sample Title="Fast Scatter" StatusTag="New" SampleName="FastScatterChart" SearchTags="scatter, scatter chart, scatter plot, fast scatter, fast scatter chart, fast scatter plot, high performance chart"/>
60+
<Sample Title="Fast Scatter" StatusTag="New" SampleName="FastScatterChart" SearchTags="scatter, scatter chart, scatter plot, fast scatter, fast scatter chart, fast scatter plot, high performance chart"/>
6161

6262
<SubCategory Title="Spline">
6363
<CardLayout>
@@ -153,6 +153,7 @@
153153
<Sample Title="OHLC chart" SampleName="OHLC" SearchTags="high,low,open,close"/>
154154
</CardLayout>
155155
</SubCategory>
156+
156157
</Category>
157158

158159
<Category Title="Real-time Charts">

maui/src/Charts/Segment/FastScatterSegment.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ internal void SetData(List<double> xValues, IList<double> yValues)
6262

6363
// Mark as empty if any NaN values are encountered
6464
if (double.IsNaN(xValue) || double.IsNaN(yValue))
65-
{
65+
{
6666
continue;
6767
}
6868

@@ -217,7 +217,7 @@ protected internal override void Draw(ICanvas canvas)
217217
{
218218
foreach (var point in _fastScatterPlottingPoints)
219219
{
220-
if((double.IsNaN(point.Y) || double.IsNaN(point.X)))
220+
if (double.IsNaN(point.Y) || double.IsNaN(point.X))
221221
{
222222
continue;
223223
}

0 commit comments

Comments
 (0)