If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Help needed on chChartTypeBubble

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-11-06, 23:19
aewe aewe is offline
Registered User
 
Join Date: Oct 2006
Posts: 1
Help needed on chChartTypeBubble

Hi,

I'm new to OWC charts and have the problem when I tried to create a bubble graph. When I run the asp page, it just shows the x and y axis with no bubbles. Please help. Below are my codes.

<html>
<%
set ObjChart = Server.CreateObject("OWC.Chart")
set c = ObjChart.Constants
set oChart = ObjChart.Charts.Add
oChart.Type = c.chChartTypeBubble

With oChart.SeriesCollection.Add
.Caption = "Queue B"
.SetData c.chDimXValues, c.chDataLiteral, Array(5, 6)
.SetData c.chDimYValues, c.chDataLiteral, Array(3.2, 4.6)

End With
%>
</html>
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On