Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > ASP > ASP Charts/Graph (Excel.Application) > ASP Charts/Graph - Cylinderical Shape 3D


ASP Charts/Graph - Cylinderical Shape 3D

ASP Charts/Graph - Cylinderical Shape 3D ตัวอย่างการเขียนกราฟแท่งแบบคู่


Config Excel.Application



AspExcelChartsPart6.asp

001.<% Option Explicit %>
002.<html>
003.<head>
004.<title>ThaiCreate.Com ASP Excel.Application Tutorial</title>
005.</head>
006.<body>
007.<%
008.    Dim xlApp,xlBook,xlSheet
009.    Dim Conn,strSQL,objRec,arrCus,intStartRows,intEndRows,i
010.    Dim Fso,MyFile,objRange,colCharts,objChart
011.    Dim bXlsFile,FileName,Ext
012. 
013.    '*** File Name Gif,Jpeg,... ***'
014.    FileName = "MyXls/MyChart.Gif"
015.    Ext = "Gif"
016. 
017.    Set Conn = Server.Createobject("ADODB.Connection")
018.    Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("mydatabase.mdb"),"" , ""
019.    strSQL = "SELECT Name,Budget,Used FROM customer "
020.    Set objRec = Server.CreateObject("ADODB.Recordset")
021.    objRec.Open strSQL, Conn, 1,3
022. 
023.    If Not objRec.EOF and Not objRec.BOF Then
024.      arrCus = objRec.GetRows()
025.    End If
026. 
027.    intStartRows = 2
028.    intEndRows = CInt(intStartRows)+CInt(Ubound(arrCus,2))
029. 
030.    objRec.Close
031.    Conn.Close
032.    Set objRec = Nothing
033.    Set Conn = Nothing
034. 
035.    '*************** Start Excel.Application *******************'
036.    Set xlApp = Server.CreateObject("Excel.Application")
037.    Set xlBook = xlApp.Workbooks.Add
038.    Set xlSheet = xlBook.Worksheets(1)
039. 
040.    xlApp.Application.Visible = False
041. 
042.    '*** Delete Sheet (2,3) - Sheet Default ***'
043.    xlBook.Worksheets(2).Select
044.    xlBook.Worksheets(2).Delete
045.    xlBook.Worksheets(2).Select
046.    xlBook.Worksheets(2).Delete
047.     
048.    '*** Sheet Data Rows ***'
049.    xlBook.Worksheets(1).Name = "MyReport"
050.    xlBook.Worksheets(1).Select
051. 
052.    With xlBook.ActiveSheet.Cells(1,1)
053.        .Value = "Customer Name"
054.        .Font.Name = "Tahoma"
055.        .BORDERS.Weight = 1
056.        .Font.Size = 10
057.        .MergeCells = True
058.    End With
059. 
060.    With xlBook.ActiveSheet.Cells(1,2)
061.        .Value = "Budget"
062.        .BORDERS.Weight = 1
063.        .Font.Name = "Tahoma"
064.        .Font.Size = 10
065.        .MergeCells = True
066.    End With
067. 
068.    With xlBook.ActiveSheet.Cells(1,3)
069.        .Value = "Used"
070.        .BORDERS.Weight = 1
071.        .Font.Name = "Tahoma"
072.        .Font.Size = 10
073.        .MergeCells = True
074.    End With
075. 
076.    For i = 0 To Ubound(arrCus,2)
077.        xlBook.ActiveSheet.Cells(intStartRows+i,1).Value = arrCus(0,i)
078.        xlBook.ActiveSheet.Cells(intStartRows+i,2).Value = arrCus(1,i)
079.        xlBook.ActiveSheet.Cells(intStartRows+i,2).NumberFormat = "$#,##0.00"
080.        xlBook.ActiveSheet.Cells(intStartRows+i,3).Value = arrCus(2,i)
081.        xlBook.ActiveSheet.Cells(intStartRows+i,3).NumberFormat = "$#,##0.00"
082.    Next
083.    '*** End Data Rows ***'
084. 
085.    Set objRange = xlBook.Sheets("MyReport").UsedRange
086.    objRange.Select
087. 
088.    '*** Creating Chart ***'
089.    xlBook.Charts.Add
090.    'xlBook.ActiveChart.SeriesCollection(1).Name = "Series1"
091.    'xlBook.ActiveChart.SeriesCollection(2).Name = "Series1"
092.    xlBook.ActiveChart.Location 2, "MyReport"      
093.     
094.    '*** Chart Properties ***'
095.    With xlBook.ActiveChart
096.            .ChartType = 98        
097.            .HasLegend = True          
098.            .HasTitle = 1
099.            .ChartTitle.Text = "Customer Report"
100.    End With
101. 
102.    '*** Legend Font ***'
103.    With xlBook.ActiveChart.Legend
104.        .Font.Name = "Arial"
105.        .Font.Size = 5
106.    End With
107. 
108. 
109.    '*** Set Area ***'
110.    xlBook.ActiveSheet.Shapes("Chart 1").IncrementLeft 20
111.    xlBook.ActiveSheet.Shapes("Chart 1").IncrementTop -97.5
112. 
113. 
114.    '*** Set Height & Width ***'
115.    xlBook.ActiveSheet.Shapes("Chart 1").ScaleHeight 2.0, 0,0
116.    xlBook.ActiveSheet.Shapes("Chart 1").ScaleWidth 1.5, 0,0
117. 
118.    '*** If Already exist delete files ***'
119.    Set Fso = CreateObject("Scripting.FileSystemObject")
120.    If (Fso.FileExists(Server.MapPath(FileName))) Then
121.       Set MyFile = Fso.GetFile(Server.MapPath(FileName))
122.       MyFile.Delete
123.    End If
124.         
125.    '*** Save To Gif,Jpeg ***'
126.    'xlApp.ActiveChart.Export "C:\Inetpub\wwwroot\myasp\MyXls\MyChart.Gif","Gif"
127.    xlApp.ActiveChart.Export Server.MapPath(FileName),Ext
128. 
129.    xlApp.Application.Quit
130. 
131.    Set xlSheet = Nothing
132.    Set xlBook = Nothing
133.    Set xlApp = Nothing
134.%>
135.<strong>Charts Created</strong><br><br>
136.<img src="<%=FileName%>">
137.</body>
138.</html>

Screenshot

ASP & Excel Charts

   
Hate it
Don't like it
It's ok
Like it
Love it
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-09-26 08:23:22 / 2008-12-11 07:22:00
  Download : Download  ASP Charts/Graph - Cylinderical Shape 3D
 Sponsored Links / Related

 
ASP Charts/Graph (Excel.Application)
Rating :

 
ASP Charts/Graph Type ID (Excel.Application)
Rating :

 
ASP Charts/Graph Export to XML (Excel.Application)
Rating :

 
ASP Charts/Graph Export to Gif,Jpg (Excel.Application)
Rating :

 
ASP Charts/Graph - Clustered Column 3D
Rating :

 
ASP Charts/Graph - Exploded pie 3D
Rating :

 
ASP Charts/Graph - Column Stacked
Rating :

 
ASP Charts/Graph - Line Markers Stacked
Rating :

 
ASP Charts/Graph - Cylinder Column Clustered
Rating :

 
ASP Charts/Graph - Create Charts and Send Email Attachment
Rating :


ThaiCreate.Com Forum
Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   





ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่