using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
namespace Infragistics.Models
{
// TODO add data model
// TODO add data source
}
This topic provides sample data and data models for use with the XamDataChart™ control and its Polar Series types.
This topic contains the following sections:
In C#:
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
namespace Infragistics.Models
{
// TODO add data model
// TODO add data source
}
In C#:
public class PolarDataPoint
{
public double Angle { get; set; }
public double Radius { get; set; }
}
In C#:
public class PolarDataSource : List<PolarDataPoint>
{
public PolarDataSource()
{
this.Add(new PolarDataPoint { Angle = 0, Radius = 80 });
this.Add(new PolarDataPoint { Angle = 30, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 45, Radius = 40 });
this.Add(new PolarDataPoint { Angle = 60, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 90, Radius = 80 });
this.Add(new PolarDataPoint { Angle = 120, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 135, Radius = 40 });
this.Add(new PolarDataPoint { Angle = 150, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 180, Radius = 20 });
this.Add(new PolarDataPoint { Angle = 210, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 225, Radius = 40 });
this.Add(new PolarDataPoint { Angle = 240, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 270, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 300, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 315, Radius = 40 });
this.Add(new PolarDataPoint { Angle = 330, Radius = 60 });
this.Add(new PolarDataPoint { Angle = 360, Radius = 80 });
}
}