I was wondering if anyone can point me in the right direction with this problem I am having. I am using TeeChart for MonoTouch and I have a line chart with the legend at the bottom. The following code is all the lines that currently define and format the legend.
Code: Select all
//Setup the chart legend on the bottom of the graph.
_chart.Legend.Visible = true;
_chart.Legend.LegendStyle = LegendStyles.Series;
_chart.Legend.Alignment = LegendAlignments.Bottom;
_chart.Legend.AutoSize = true;
_chart.Legend.HorizMargin = 15;
_chart.Legend.Width = 600;
I have tried everything I can think of and just can't get the box to become any bigger. I've tried turning off autosize, setting the width bigger, etc.
Can you help? What am I doing wrong or not doing at all to make this size correctly?
Thanks!
Bob