I figured it out.
Suppress auto labels:
cpuChart.Axis(
StandardAxis.Depth).NumericScale.AutoLabels = false;
Create day of week labels
AxisLabel
sunAxisLabel = cpuChart.Axis(StandardAxis.Depth).CustomLabels.Add();
sunAxisLabel.Value = 0;
sunAxisLabel.Text =
“Sun”;
sunAxisLabel.Offset = dayLabelOffset1;
sunAxisLabel.Angle = dayLabelAngle1;
sunAxisLabel.TextProps.Backplane.Visible =
true;
AxisLabel monAxisLabel = cpuChart.Axis(StandardAxis.Depth).CustomLabels.Add();
monAxisLabel.Value = 1;
monAxisLabel.Text =
“Mon”;
monAxisLabel.Offset = dayLabelOffset2;
monAxisLabel.Angle = dayLabelAngle2;
monAxisLabel.TextProps.Backplane.Visible =
true;
etc.
Sam
Imported from legacy forums. Posted by Sam (had 1395 views)