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,037

HOME > ASP > ASP Charts/Graph (Excel.Application) > ASP Charts/Graph - Column Stacked



Clound SSD Virtual Server

ASP Charts/Graph - Column Stacked

ASP Charts/Graph - Column Stacked ตัวอย่างการเขียนกราฟแท่งแบบช่องเดียว


Config Excel.Application


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

Screenshot

ASP & Excel Charts






   
Hate it
Don't like it
It's ok
Like it
Love it
Total Votes: 361Overall Rating: 4 / 5
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-09-26 08:22:37 / 2008-12-11 07:21:38
  Download : Download  ASP Charts/Graph - Column Stacked
 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 - Line Markers Stacked
Rating :

 
ASP Charts/Graph - Cylinder Column Clustered
Rating :

 
ASP Charts/Graph - Cylinderical Shape 3D
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
   







Load balance : Server 00
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 อัตราราคา คลิกที่นี่