欢迎来到天天文库
浏览记录
ID:37903088
大小:39.50 KB
页数:6页
时间:2019-06-02
《teechart常用函数》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、teechart常用函数1.addxyfunctionAddXY(ConstAXValue,AYValue:Double;ConstALabel:String;AColor:TColor):Integer;virtual;UnitTeEngineDescriptionThisfunctioninsertsanewpointintheSeries.ThenewpointhasXandYvalues.TheALabelparameterisoptional(canbeempty'').TheAColorparameterisoptional(canbeclTeeColor
2、).ThefunctionreturnsthenewpointpositionintheValueslist.Series1.AddXY(123,456,'Hello',clGreen);2.addx,addyfunctionAddY(ConstAYValue:Double;ConstALabel:String;AColor:TColor):Integer;UnitTeEngineDescriptionTheTChartSeriesAddYmethodcanbeusedtoinsertnewSeriespointswhenyoudonothaveanXValuefor
3、thepoint.ThisfunctioninsertsanewpointintheSeries.ThenewpointonlyhasYvalues.Xvalueisautomaticallycalculated.TheAXLabelparameterisoptional(canbeempty'').TheAColorparameterisoptional(canbeclTeeColor).ThefunctionreturnsthenewpointpositionintheValueslist.3.TeeSaveToBitmapprocedureTeeSaveToBi
4、tmap(APanel:TCustomTeePanel;ConstFileName:WideString;ConstR:TRect);UnitTeeBmpOptionsDescriptionCreatesabitmapfromaChartorTreecomponentandsavesittoafile.TeeSaveToBitmap(Chart1,'c:mychart.bmp',Chart1.ChartBounds);3.1procedureTeeSaveToJPEG(APanel:TCustomTeePanel;ConstFileName:WideString;A
5、Width,AHeight:Integer);UnitTeeJPEGDescriptionCreatesaJPEGpicturefromaChartorTreeandsavesittoafile.TeeSaveToJPEG(Chart1,'mychart.jpg',400,250); TeeChart控件的应用设计背景基于服务器/浏览器架构的解决方案在越来越多的领域得到应用。使用ASP脚本,我们可以方便地访问各种数据库,生成与用户交互的动态页面。一般情况下,由浏览器解释要显示的结果,其中统计数据的显示结果一般采用HTML表格形式。笔者在铁路车站Intranet系统的开
6、发过程中,遇到要把数据库中的统计结果用统计图表(柱状图、折线图、饼图等)方式输出的问题。因为统计图表在美观和易于理解等方面有着表格所不具备的优越性,所以这个问题具有一定的普遍性。目前,针对这个问题,主要有3种可行的解决方案:1.在浏览器端安装使用图表控件如MsChart等。这样做的缺点是在客户端要安装和注册ActiveX控件,操作较为复杂,并且把客户端系统限制在Windows的范围内。2.使用JavaApplet显示图形。这样做开发难度较高,需要针对具体的应用要求编制Java绘图程序。3.在服务器端使用控件动态生成图形文件(JPEG格式),此方法可以适用于任何流行的客
7、户端浏览器。本文讨论第3种方案,使用的控件是TeeChartProActiveX4.0版。TeeChart控件TeeChartProActiveX是西班牙SteemaSL公司开发的图表类控件,主要用来生成各种复杂的图表。熟悉Delphi和C++Builder的编程人员对它不会陌生,因为在Delphi和C++Builder里包括了TeeChart的VCL版本。本文使用的是TeeChartProActiveX4.0,它的测试版可以从www.teechart.com网站下载。TeeChartProActiveX4.0的主要特性如下:是32位ActiveX控
此文档下载收益归作者所有