첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

TestProject.zip
0.01MB

▶ MainForm.cs

using System.Drawing;
using System.Windows.Forms;

using Steema.TeeChart.Drawing;
using Steema.TeeChart.Styles;

namespace TestProject
{
    /// <summary>
    /// 메인 폼
    /// </summary>
    public partial class MainForm : Form
    {
        //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
        ////////////////////////////////////////////////////////////////////////////////////////// Public

        #region 생성자 - MainForm()

        /// <summary>
        /// 생성자
        /// </summary>
        public MainForm()
        {
            InitializeComponent();

            this.tChart.Panel.Pen = new ChartPen(Color.Black);

            for(int i = 0; i < 10; i++)
            {
                Points points = new Points(this.tChart.Chart);

                points.FillSampleValues(20);
            }

            this.tChart.ClickLegend += tChart_ClickLegend;
        }

        #endregion

        //////////////////////////////////////////////////////////////////////////////////////////////////// Method
        ////////////////////////////////////////////////////////////////////////////////////////// Private

        #region TChart 클래스 레전드 클릭시 처리하기 - tChart_ClickLegend(sender, e)

        /// <summary>
        /// TChart 클래스 레전드 클릭시 처리하기
        /// </summary>
        /// <param name="sender">이벤트 발생자</param>
        /// <param name="e">이벤트 인자</param>
        private void tChart_ClickLegend(object sender, MouseEventArgs e)
        {
            int index = this.tChart.Legend.Clicked(e.X, e.Y);

            if(index > -1)
            {
                for(int i = 0; i < this.tChart.Series.Count; i++)
                {
                    this.tChart[i].Transparency = 0;

                    if(i != index)
                    {
                        this.tChart[i].Transparency = 70;
                    }
                }
            }
        }

        #endregion
    }
}
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요