How do you change the colour of the labels(not sure what the correct name is) in a Microsoft Chart Control in VB.
By "labels" I mean the text that is overlaid on every column in a StackedColumn
chart.
You can change the Axis labels with the following:
<AxisY LineColor="Red">
<LabelStyle ForeColor="Red" />
</AxisY>
<AxisX LineColor="Red">
<LabelStyle ForeColor="Red" />
</AxisX>
What is the equivalent to target the labels?