Spread for ASP.NET 7.0 Product Documentation
ZIndex Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Chart Namespace > SpreadChart Class : ZIndex Property


Glossary Item Box

Gets or sets the ZIndex of the chart.

Syntax

Visual Basic (Declaration) 
Public Overridable Property ZIndex As Integer
Visual Basic (Usage)Copy Code
Dim instance As SpreadChart
Dim value As Integer
 
instance.ZIndex = value
 
value = instance.ZIndex
C# 
public virtual int ZIndex {get; set;}

Remarks

This property indicates the order in which the chart is displayed.

Example

This example sets the ZIndex property.
C#Copy Code
FpSpread1.Sheets[0].AddChart(0, 0, typeof(FarPoint.Web.Chart.BarSeries), 300, 300, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, true);
FarPoint.Web.Spread.Chart.SpreadChart chart = FpSpread1.Sheets[0].Charts[0];        
chart.Formula = " Sheet1!$A$1:$D$7";
chart.ZIndex = 3;
Visual BasicCopy Code
FpSpread1.Sheets(0).AddChart(0, 0, GetType(FarPoint.Web.Chart.BarSeries), 300, 300, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, True)
Dim chart As FarPoint.Web.Spread.Chart.SpreadChart
chart = FpSpread1.Sheets(0).Charts(0)
chart.Formula = " Sheet1!$A$1:$D$7"
chart.ZIndex = 3

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.