chart.ValueAxis.TickLabels.NumberFormat

If I want to format my value axis tick labels using a dollar format, how can this be done?

The number format string is same as a custom format string setting to a cell. In you case, you can try this:

chart.ValueAxis.TickLabels.NumberFormat = “$0”;

or

chart.ValueAxis.TickLabels.NumberFormat = “$0.00”;