仓酷云

标题: ASP网站制作之asp完成k线图(在线) [打印本页]

作者: 飘灵儿    时间: 2015-1-16 23:33
标题: ASP网站制作之asp完成k线图(在线)
由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。k线图|在线能够思索利用MSCHART,可是弱点是显现不太悦目,不很专业,同时,假如客户端没有装的话就对照贫苦,由于显现不出来,以是一样平常的网站都接纳天生图片的体例。上面给出MSCHART的一些器材,能够本人思索着利用,我没有利用过其他的控件,以是不克不及给你中意的回复。别的附给你一个网址,www.tjinfo.com,内里有个查询拜访题,利用了MSCHART,可是没有效折线,这个你能够本人界说的,CSDN的查询拜访也利用了MSCHART。
=================================================================
看看我的这篇总结,你会受益不浅!
关于Mschart的申明文档

MsChart是微软制造的功效壮大的图表工具,用它能够很便利的创建各类图表。制造各类3维2维的直方图,折线图。分离前一段工夫我对Mschart组件的熟悉,谈谈Mschart组件的利用办法。
1、ChartActivex控件:
IntheHTMLpage,insertan<OBJECT>tagfortheLicenseManagerobjectbeforeanyother<OBJECT>tags.TheLicenseManagerisanActiveXcontrolthatisinstalledwithInternetExplorer.
NOTE:ThisCLASSID,"5220cb21-c88d-11cf-b347-00aa00a28331",isfortheLicenseManagerandnotforyourActiveXcontrols.YoumustusethesameCLASSIDeverytimeyourefertotheLPKfile.Inaddition,youshouldkeeptheNamepropertyofthe<PARAM>tagas"LPKPath",andsettheValuepropertyforthe<PARAM>tagoftheLicenseManagerobjecttotheLPKfilenameandpath.ThispathmaybearelativepathbutmustnotrefertoaUNCshareoraURLonanotherdomain.
BecauseyoucanonlyhaveoneLPKfileforeachHTMLpage,makesurethatyouincludeallofthelicensedActiveXControlsforthepagewhenyougenerateyourLPKfile.Forexample:
<objectCLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="Microsoft_Licensed_Class_Manager_1_0">
<paramNAME="LPKPath"VALUE="mschart.lpk">
</object>
Insertthe<OBJECT>tagforyourlicensedcontrolafterward.Forexample,anHTMLpagethatdisplaystheMicrosoftMaskedEditcontrollookslikethis.
HereIdownloadedthefilemschart.cabfromMicrosoftswebsite.Ithasbeendigitallysigned.
<OBJECTclassid="clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D"
id=mschart1style="HEIGHT:326px;WIDTH:651px"CODEBASE="mschart.cab"></OBJECT>
Youcanlookthisacticleifyouneedhelp.
http://support.microsoft.com/support/kb/articles/Q159/9/23.ASP
2、Mschart组件的一些经常使用属性先容
a、charttype:图形的范例
charttype=0>三维直方图
charttype=1>二维直方图
charttype=2>三维折线图
charttype=3>二维折线图
charttype=4>三维面积图
charttype=5>二维面积图
charttype=14>饼图
b、showlegend:是不是显现讲授
c、titletext:题目
d、Columncount:Thenumberofdatacolumns
e、Rowcount:Thenumberofdatarows
f、Footnotetext:Thefootnotetext.
g、Plot:ReturnsareferencetoaPlotobjectthatdescribestheareauponwhichachartisdisplayed.
h、row:Arownumberinthecurrentcolumn.Rowsarenumberedfromtoptobottombeginningwith1.column:Thecurrentdatacolumn.
i、Rowlabel:Thetextforarowlabel.ThelabelyouspecifysetsthelabelforthedatapointsidentifiedbytheRowproperty.Thislabelappearsalongthecategoryaxisformostcharttypesandisusedasthelabelforeachindividualpieinapiechart.Labeltextmaynotbedisplayedifitistoolongtofitonachart.columnlabel:.Labeltextassociatedwithacolumninthedatagrid.
j、Data:Thedatapointvalue.Ifthecurrentdatapointalreadycontainsavalue,itisreplacedbythenewvalue.Thechartisredrawntoreflectthenewvalueforthecurrentdatapoint.
k、ChartData:Atwo-dimensionalarraythatholdsthedatausedtodrawthechart.Ifthefirstseriesofamulti-dimensionalarraycontainsstrings,thosestringswillbecomethelabelsofthechart.ChartDataisthedefaultpropertyfortheMSChartcontrol.
ItissomanyproperitiesaboutMschartActivex.Ionlyintroducesomuch.Now,Iwillprovideyourtwoexampletoyou!Iwishitcanhelpyouunderstandit.
Example1:Itcomefrom:
http://www.4guysfromrolla.com/webtech/MSChartExample.shtm
<objectCLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="Microsoft_Licensed_Class_Manager_1_0">
<paramNAME="LPKPath"VALUE="mschart.lpk">
</object>
<OBJECTclassid="clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D"
id=mschart1style="HEIGHT:326px;WIDTH:651px"CODEBASE="mschart.cab"></OBJECT>
<scriptLANGUAGE="Vbscript">
MSChart1.ChartType=1
MSChart1.Plot.SeriesCollection(1).Pen.VtColor.Set0,0,0
MSChart1.Plot.SeriesCollection(1).Pen.Width=50
Fori=1ToMSChart1.Plot.Axis(1).Labels.Count
MSChart1.Plot.Axis(1).Labels(i).Format="$0,###"
MSChart1.Plot.Axis(1).Labels(i).VtFont.Name="Tahoma"
MSChart1.Plot.Axis(1).Labels(i).VtFont.Size=10
Next
MS</p>想法是和程序员的想法不一样的.至于为什么.大家去想一想.跟心理学有关的
作者: 简单生活    时间: 2015-1-20 09:53
我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。
作者: 若相依    时间: 2015-1-24 16:00
跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组
作者: 仓酷云    时间: 2015-2-2 06:50
哪些内置对象是可以跳过的,或者哪些属性和方法是用不到的?
作者: 因胸联盟    时间: 2015-2-7 16:55
如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。
作者: 再见西城    时间: 2015-2-22 16:36
Session:这个存储跟客户端会话过程的数据,默认20分钟失效
作者: 若天明    时间: 2015-3-7 00:58
如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。
作者: 飘灵儿    时间: 2015-3-13 23:12
兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的
作者: 飘飘悠悠    时间: 2015-3-20 22:18
我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2