Here's a picture to illustrate this: In this project I just placed the chart on form, added two series and a custom GetAxisLabel() function that only adds a lot of brackets to labels:
Code: Select all
void __fastcall TForm3::Chart1GetAxisLabel(TChartAxis *Sender,TChartSeries *Series, int ValueIndex, AnsiString &LabelText){
LabelText=AnsiString("[[[[[[[[[[[[[[[")+LabelText+"]]]]]]]]]]]]]]]";
}
Is this a bug? Is there a workaround?