⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ulegend.cpp

📁 TeeChart Pro ActiveX是西班牙Steema SL公司开发的图表类控件
💻 CPP
字号:
/*********************************************/
/* TeeChart Delphi Component Library 4.0     */
/* Demo                                      */
/* Copyright (c) 1995-1998 by David Berneda  */
/* All rights reserved                       */
/*********************************************/
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop

#include "ULegend.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TLegendForm *LegendForm;
//---------------------------------------------------------------------------
__fastcall TLegendForm::TLegendForm(TComponent* Owner)
  : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TLegendForm::LineSeries2AfterDrawValues(TObject *Sender)
{
  // we'll draw over PaintBox1
  for (int t = 0;t<Chart1->SeriesCount();t++) {  // for each Series in Chart
    PaintBox1->Canvas->Font->Color = Chart1->Series[t]->SeriesColor;  // set font color
    // draw the customized Series Title
    PaintBox1->Canvas->TextOut(40,20+16*t,
      "This is a long Series title: "+Chart1->SeriesTitleLegend(t));
  }
}
//---------------------------------------------------------------------------
void __fastcall TLegendForm::FormCreate(TObject *Sender)
{
  LineSeries1->FillSampleValues(50); // random values
  LineSeries2->FillSampleValues(50);
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -