基本信息
源码名称:winform ZedGraph图表控件源码(饼图/折线图/柱形图)
源码大小:6.07M
文件格式:.rar
开发语言:C#
更新时间:2019-03-07
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
//============================================================================
//ZedGraph Class Library - A Flexible Charting Library for .Net
//Copyright (C) 2005 Jerry Vos
//
//This library is free software; you can redistribute it and/or
//modify it under the terms of the GNU Lesser General Public
//License as published by the Free Software Foundation; either
//version 2.1 of the License, or (at your option) any later version.
//
//This library is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
//Lesser General Public License for more details.
//
//You should have received a copy of the GNU Lesser General Public
//License along with this library; if not, write to the Free Software
//Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//=============================================================================
using System;
namespace ZedGraph.Demo
{
/// <summary>
/// An implementation of ChartTabForm that loads up ZedGraph demos.
/// </summary>
///
/// <author> Jerry Vos </author>
/// <version> $Revision: 1.12 $ $Date: 2007/01/26 09:01:49 $ </version>
public class DemoTabForm : ChartTabForm
{
#region Constructor
public DemoTabForm()
{
}
#endregion
#region Methods
protected override void loadDemos()
{
loadDemo(new ComboDemo());
loadDemo(new PieChartDemo());
loadDemo(new LineStackingDemo());
loadDemo(new TransparentDemo1());
loadDemo(new LineGraphBandDemo());
loadDemo(new FilledBarGraphDemo());
loadDemo(new SineBarGraphDemo());
loadDemo(new MasterPaneDemo());
loadDemo(new MultiPieChartDemo());
loadDemo(new GradientByValueDemo());
loadDemo(new HiLowCloseDemo());
loadDemo(new HiLowBarDemo());
loadDemo(new StickItemDemo());
loadDemo(new HorizontalBarDemo());
loadDemo(new MultiYDemo());
loadDemo(new DualYDemo());
loadDemo(new FilledCurveDemo());
loadDemo(new SampleMultiPointListDemo());
loadDemo(new ErrorBarDemo());
loadDemo(new OverlayBarDemo());
loadDemo(new SortedOverlayBarDemo());
loadDemo(new CrossLineDemo());
loadDemo(new StepChartDemo());
loadDemo(new SmoothChartDemo());
loadDemo(new BaseTicDemo());
loadDemo(new HorizontalStackedBarDemo());
loadDemo(new VerticalBarsWithLabelsDemo());
loadDemo(new HorizontalBarsWithLabelsDemo());
loadDemo(new StackedBarsWithLabelsDemo());
loadDemo(new InitialSampleDemo());
loadDemo(new ModInitialSampleDemo());
loadDemo(new DateAxisSampleDemo());
loadDemo(new TextAxisSampleDemo());
loadDemo(new BarChartSampleDemo());
loadDemo(new HorizontalBarSampleDemo());
loadDemo(new StackedBarSampleDemo());
loadDemo(new PercentStkBarDemo());
loadDemo(new PieSampleDemo());
loadDemo( new MasterSampleDemo() );
loadDemo( new SynchronizedPanes() );
loadDemo( new JapaneseCandleStickDemo() );
loadDemo( new OHLCBarDemo() );
loadDemo( new ImageForSymbolDemo() );
loadDemo( new MasterPaneLayout() );
// TODO: add more demos here
// ...
}
#endregion
}
}