Spread Silverlight Documentation
UseCustomItems Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Axis Class : UseCustomItems Property
Gets or sets a value that indicates whether to use custom items.
Syntax
'Declaration
 
Public Property UseCustomItems As System.Boolean
'Usage
 
Dim instance As Axis
Dim value As System.Boolean
 
instance.UseCustomItems = value
 
value = instance.UseCustomItems
public System.bool UseCustomItems {get; set;}

Property Value

true to use custom items; otherwise, false.
Example
This example sets the UseCustomItems property.
GrapeCity.Windows.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Windows.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.BarStacked, "Sheet1!$A$1:$A$7", 0,0, 200, 200);
gcSpreadSheet1.ActiveSheet.SetArray(0, 0, new object[,] { { 1 }, { 2 }, { 3 }, { 4 }, { 5 }, { 6 }, { 7 }, { 8 }, { 9 }, { 10 } });
chart.AxisX.UseCustomItems = true;
chart.AxisX.Items.Add("a");
chart.AxisX.Items.Add("b");
chart.AxisX.Items.Add("c");
gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
Dim chart As New GrapeCity.Windows.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.BarStacked, "Sheet1!$A$1:$A$7", 0,0, 200, 200)
GcSpreadSheet1.ActiveSheet.SetArray(0, 0, new object(,) { { 1 }, { 2 }, { 3 }, { 4 }, { 5 }, { 6 }, { 7 }, { 8 }, { 9 }, { 10 } })
chart.AxisX.UseCustomItems = True
chart.AxisX.Items.Add("a")
chart.AxisX.Items.Add("b")
chart.AxisX.Items.Add("c")
GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
See Also

Reference

Axis Class
Axis Members