在我的代码中,当用户单击系列的栏时,需要将系列的复选框样式更改为无。但是当我这样做时,我的图表宽度正在增加。无论图例表宽度如何,我们有什么方法可以保持图表宽度固定。
谢谢阿克谢
这可以做到
GetLegend().SetResizeChart(false);
GetLegend().SetCustomPosition(true);
GetLegend().SetPositionUnits(muPercent);
GetLegend().SetLeftPercent(83);
GetLegend().SetTopPercent(10);
将您的图例对齐设置在底部以避免图表的宽度增加,如下所示。Chart.GetLegend().SetAlignment(laBottom);
如果您想要图例的自定义位置(图表右侧),那么您可以执行以下操作。m_Chart1.GetLegend().SetCustomPosition(TRUE);
m_Chart1.GetLegend().SetPositionUnits(muPercent);
m_Chart1.GetLegend().SetTopPercent(20); 长左边距 = 80.0; m_Chart1.GetLegend().SetLeftPercent(leftmargin);
m_Chart1.GetPanel().SetMarginRight(100-leftmargin+1);//为了避免图例和图表重叠你也可以通过修改上面的值来微调你的图例和图表