Version

Setting Axis Title

Purpose

This topic explains how to set axis title in the XamScatterSurface3D™ control.

Required background

The following topics are prerequisites to understanding this topic:

Topic Purpose

This topic provides detailed instructions to help you get up and running as soon as possible with the xamScatterSurface3D™ control.

This topic explains the features supported by the control from developer perspective.

This topic provides an overview of the visual elements of the control.

In this topic

This topic contains the following sections:

Setting Axis Title

Overview

Use the SurfaceChartAxis Title property to set an axis title.

By default, the axes are not named.

Property settings

The following table maps the desired configuration to the property settings that manage it.

In order to: Use this property: And set it to:

Set an axis title

string

Example

The screenshot below demonstrates an example setting the xamScatterSurface3D control axes titles:

Setting Axis Title 1.png

Following is the code that implements this example.

In XAML:

<ig:XamScatterSurface3D Name="SurfaceChart"
 ItemsSource="{Binding Path=DataCollection}"
 XMemberPath="X" YMemberPath="Y" ZMemberPath="Z">
    <ig:XamScatterSurface3D.XAxis>
        <ig:LinearAxis Title="X Axis" />
    </ig:XamScatterSurface3D.XAxis>
    <ig:XamScatterSurface3D.YAxis>
        <ig:LinearAxis Title="Y Axis" />
    </ig:XamScatterSurface3D.YAxis>
    <ig:XamScatterSurface3D.ZAxis>
        <ig:LinearAxis Title="Z Axis" />
    </ig:XamScatterSurface3D.ZAxis>
</ig:XamScatterSurface3D>

In C#:

var linearAxisX = new LinearAxis();
var linearAxisY = new LinearAxis();
var linearAxisZ = new LinearAxis();
linearAxisX.Title = "X Axis";
linearAxisY.Title = "Y Axis";
linearAxisZ.Title = "Z Axis";
SurfaceChart.XAxis = linearAxisX;
SurfaceChart.YAxis = linearAxisY;
SurfaceChart.ZAxis = linearAxisZ;

In Visual Basic:

Dim linearAxisX = New LinearAxis()
Dim linearAxisY = New LinearAxis()
Dim linearAxisZ = New LinearAxis()
linearAxisX.Title = "X Axis"
linearAxisY.Title = "Y Axis"
linearAxisZ.Title = "Z Axis"
SurfaceChart.XAxis = linearAxisX
SurfaceChart.YAxis = linearAxisY
SurfaceChart.ZAxis = linearAxisZ

Related Content

Topics

The following topics provide additional information related to this topic.

Topic Purpose

This topic explains how to configure the axis title background and foreground brush in the xamScatterSurface3D control.

This topic explains how to configure the axis title font settings in the xamScatterSurface3D control.

This topic explains how to configure the title offset from its axis in the xamScatterSurface3D control.

This topic explains how to configure the axis title visibility and opacity in the xamScatterSurface3D control.