728x90
728x170
TeeChart 에서 Single Series 인 경우 기본으로는 Legend에 아래처럼 값이 표시됩니다.
이를 실제 Series 의 Legend 로 보이게 하는 방법은 TChart 의 Legend.LegendStyle 를 Series 로 설정하면 됩니다.
using Steema.TeeChart.Styles;
namespace Win.TeeChartTest
{
public partial class TeeChartForm : Form
{
public TeeChartForm()
{
InitializeComponent();
this.tChart.Axes.Bottom.Labels.DateTimeFormat = "MM-dd";
this.tChart.Legend.LegendStyle = Steema.TeeChart.LegendStyles.Series;
// Set SampleData
for (int i = 0; i < 1; i++)
{
Points points = new Points(this.tChart.Chart);
points.XValues.DateTime = true;
points.Legend.Text = "test";
points.FillSampleValues(20);
}
}
}
}
결과
[Source]
https://github.com/kei-soft/Win.TeeChartTest
728x90
그리드형
'TeeChart' 카테고리의 다른 글
[TeeChart] Custom Label 표시하기 (0) | 2022.09.19 |
---|---|
[TeeChart] Line 그리기 - ColorLine (0) | 2022.09.19 |
[TeeChart] Excel 저장하기 (0) | 2022.09.19 |
[TeeChart] ToolTip 표시 하기 (0) | 2022.09.19 |
[TeeChart] Legend 의 Series Click 시 선택 Series 강조하기 - .NET6 버그 (0) | 2022.08.26 |