Spread ASP.NET 6.0 Product Documentation
Title Property
See Also  Example Send Feedback
FarPoint.Web.Chart Assembly > FarPoint.Web.Chart Namespace > PolarAngleAxis Class : Title Property


Glossary Item Box

Gets or sets the axis title.

Syntax

Visual Basic (Declaration) 
Public Property Title As String
Visual Basic (Usage)Copy Code
Dim instance As PolarAngleAxis
Dim value As String
 
instance.Title = value
 
value = instance.Title
C# 
public string Title {get; set;}

Exceptions

ExceptionDescription
System.ArgumentNullException value is a null reference (Nothing in VB).

Example

This example sets the Title property.
C#Copy Code
FarPoint.Web.Chart.PolarAreaSeries series0 = new FarPoint.Web.Chart.PolarAreaSeries();
series0.SeriesName = "Series 0";
series0.XValues.AddRange(new Double[] {0.0, 45.0, 90.0, 180.0, 270.0});
series0.YValues.AddRange(new Double[] {1.0, 2.0, 3.0, 4.0, 5.0});
FarPoint.Web.Chart.PolarAreaSeries series1 = new FarPoint.Web.Chart.PolarAreaSeries();
series1.SeriesName = "Series 1";
series1.XValues.AddRange(new Double[] {0.0, 45.0, 90.0, 180.0, 270.0});
series1.YValues.AddRange(new Double[] {2.0, 3.0, 4.0, 5.0, 6.0});
FarPoint.Web.Chart.PolarPlotArea plotArea =new FarPoint.Web.Chart.PolarPlotArea();
plotArea.Location = new System.Drawing.PointF(0.2F, 0.2F);
plotArea.Size = new System.Drawing.SizeF(0.6F, 0.6F);
plotArea.Series.Add(series0);
plotArea.Series.Add(series1);
plotArea.XAxis.RulerVisible = true; //polar angle axis
plotArea.XAxis.MinorTickVisible = true;
plotArea.XAxis.Title = "X Axis";
plotArea.XAxis.TitleVisible = true;
FarPoint.Web.Chart.ChartModel model = new FarPoint.Web.Chart.ChartModel();
model.PlotAreas.Add(plotArea);
FarPoint.Web.Spread.Chart.SpreadChart chart = new FarPoint.Web.Spread.Chart.SpreadChart();
chart.Model = model;
FpSpread1.Sheets[0].Charts.Add(chart);
Visual BasicCopy Code
Dim series0 As New FarPoint.Web.Chart.PolarAreaSeries()
series0.SeriesName = "Series 0"
series0.XValues.AddRange(New Double() {0.0, 45.0, 90.0, 180.0, 270.0})
series0.YValues.AddRange(New Double() {1.0, 2.0, 3.0, 4.0, 5.0})
Dim series1 As New FarPoint.Web.Chart.PolarAreaSeries()
series1.SeriesName = "Series 1"
series1.XValues.AddRange(New Double() {0.0, 45.0, 90.0, 180.0, 270.0})
series1.YValues.AddRange(New Double() {2.0, 3.0, 4.0, 5.0, 6.0})
Dim plotArea As New FarPoint.Web.Chart.PolarPlotArea()
plotArea.Location = New System.Drawing.PointF(0.2F, 0.2F)
plotArea.Size = New System.Drawing.SizeF(0.6F, 0.6F)
plotArea.Series.Add(series0)
plotArea.Series.Add(series1)
plotArea.XAxis.RulerVisible = True 'polar angle axis
plotArea.XAxis.MinorTickVisible = True
plotArea.XAxis.Title = "X Axis"
plotArea.XAxis.TitleVisible = True
Dim model As New FarPoint.Web.Chart.ChartModel()
model.PlotAreas.Add(plotArea)
Dim chart As New FarPoint.Web.Spread.Chart.SpreadChart()
chart.Model = model
FpSpread1.Sheets(0).Charts.Add(chart)

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.