Axes

The x-axis and y-axis are shown by default in all charts but the pie chart and donut chart.

axes

ShieldChart axes are defined into the Axes collection so you can add multiple axes-x or axes-y to the chart by just adding additional ChartAxisX or ChartAxisY objects into the collection:

<shield:ShieldChart runat="server" ID="ShieldChart1">
    <Axes>
        <shield:ChartAxisX CategoricalValues="Jan, Feb, Mar, Apr, May, Jun"></shield:ChartAxisX>
        <shield:ChartAxisY>
        </shield:ChartAxisY>
        <shield:ChartAxisY>
        </shield:ChartAxisY>
    </Axes>
…

From the ChartAxisX or ChartAxisY you can control the Ticks and MinorTicks:

<shield:ShieldChart runat="server" ID="ShieldChart1">
    <Axes>
        <shield:ChartAxisX TicksWidth="3px" MinorTicksWidth="1px" DrawColor="Red" 
            CategoricalValues="Jan, Feb, Mar, Apr, May, Jun">
        </shield:ChartAxisX>
    </Axes>

You can configure the ticks text and title text via the AxisTickText and Title properties:

<shield:ShieldChart runat="server" ID="ShieldChart1">
    <Axes>
        <shield:ChartAxisX CategoricalValues="Jan, Feb, Mar, Apr, May, Jun">
            <AxisTickText>
                <Style Italic="true" />
            </AxisTickText>
        </shield:ChartAxisX>
        <shield:ChartAxisY>
            <AxisTickText TextAngle="20">
                <Style Bold="true" />
            </AxisTickText>
            <Title Text="AxisY" Align="Low">
                <Style Bold="true"/>
            </Title>
        </shield:ChartAxisY>
        <shield:ChartAxisY>
            <AxisTickText>
                <Style FontSize="12px" Italic="true" />
            </AxisTickText>
            <Title Text="Second AxisY" Align="High">
            </Title>
        </shield:ChartAxisY>
    </Axes>
…