gpt4 book ai didi

c++ - 数据点标签格式

转载 作者:太空宇宙 更新时间:2023-11-04 13:47:27 32 4
gpt4 key购买 nike

我简化了这段代码,可以很好地在我的图表中显示我的数据,但问题是我想在所有点旁边显示一个标签 RIGHT 所以它看起来像 this .现在就像this而且看起来很丑。

LabelFormat 在 MSDN 和其他网站上的文档并不是很有帮助。

[...]
System::Windows::Forms::DataVisualization::Charting::DataPoint^ a_point;
System::Windows::Forms::DataVisualization::Charting::Series^ series1 =
(gcnew System::Windows::Forms::DataVisualization::Charting::Series());

for (i = 0; i < X.size(); i++)
{
a_point = (gcnew System::Windows::Forms::DataVisualization::Charting::DataPoint());
a_point->SetValueXY(X[i], Y[i]);
a_point->Label = i.ToString();
a_point->LabelForeColor = System::Drawing::Color::Gray;
a_point->LabelFormat = ""; // here

series1->Points->Add(a_point);
}

Series->Add(series1);
[...]

最佳答案

尝试禁用系列上的智能标签。

series1->SmartLabelStyle->Enabled = false;

关于c++ - 数据点标签格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25311002/

32 4 0