473,324 Members | 2,246 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

ASP can generate a chart (pie chart) ?

hi,
May I want to know ASP or Javascript can generate a chart (pie chart) ?
or other method can do that?

I feel appreciate that anyone can help me ! ^^'

--
Regards,
Tarek ^^'

-----------------------
Tarek's WorkShop
Jul 22 '05 #1
6 6534

"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:32**********************************@microsof t.com...
hi,
May I want to know ASP or Javascript can generate a chart (pie chart) ?
or other method can do that?

I feel appreciate that anyone can help me ! ^^'


No. Not with classic ASP.
You might want to look into Java Applets.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004
Jul 22 '05 #2
hi, Hal
thx for your help first, I have suggest 1 method ......
Can I use ASP platform export to EXCEL (maybe marco), generate a chart, then
transfer back to ASP, is it work?

"Hal Rosser" 來函:

"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:32**********************************@microsof t.com...
hi,
May I want to know ASP or Javascript can generate a chart (pie chart) ?
or other method can do that?

I feel appreciate that anyone can help me ! ^^'


No. Not with classic ASP.
You might want to look into Java Applets.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004

Jul 22 '05 #3
hi, Hal
or use ASP.net ? i know it can do that, right?

"Tarek" 來函:
hi, Hal
thx for your help first, I have suggest 1 method ......
Can I use ASP platform export to EXCEL (maybe marco), generate a chart, then
transfer back to ASP, is it work?

"Hal Rosser" 來函:

"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:32**********************************@microsof t.com...
hi,
May I want to know ASP or Javascript can generate a chart (pie chart) ?
or other method can do that?

I feel appreciate that anyone can help me ! ^^'


No. Not with classic ASP.
You might want to look into Java Applets.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004

Jul 22 '05 #4
I don't know about pie charts, but you can generate a bar graph rather
easily. Just have a smal solid-color image, and set the width or height to a
variable.

<%
intSample = '(whatever it takes to get this number)'
%>

<img src="red.gif" width="10" height="<%=intSample%>">
"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:2E**********************************@microsof t.com...
hi, Hal
or use ASP.net ? i know it can do that, right?

"Tarek" ??:
hi, Hal
thx for your help first, I have suggest 1 method ......
Can I use ASP platform export to EXCEL (maybe marco), generate a chart, then transfer back to ASP, is it work?

"Hal Rosser" ??:

"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:32**********************************@microsof t.com...
> hi,
> May I want to know ASP or Javascript can generate a chart (pie chart) ? > or other method can do that?
>
> I feel appreciate that anyone can help me ! ^^'
>

No. Not with classic ASP.
You might want to look into Java Applets.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004

Jul 22 '05 #5
thx! ^^

"middletree" wrote:
I don't know about pie charts, but you can generate a bar graph rather
easily. Just have a smal solid-color image, and set the width or height to a
variable.

<%
intSample = '(whatever it takes to get this number)'
%>

<img src="red.gif" width="10" height="<%=intSample%>">
"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:2E**********************************@microsof t.com...
hi, Hal
or use ASP.net ? i know it can do that, right?

"Tarek" ??:
hi, Hal
thx for your help first, I have suggest 1 method ......
Can I use ASP platform export to EXCEL (maybe marco), generate a chart, then transfer back to ASP, is it work?

"Hal Rosser" ??:

>
> "Tarek" <Ta***@discussions.microsoft.com> wrote in message
> news:32**********************************@microsof t.com...
> > hi,
> > May I want to know ASP or Javascript can generate a chart (pie chart) ? > > or other method can do that?
> >
> > I feel appreciate that anyone can help me ! ^^'
> >
>
> No. Not with classic ASP.
> You might want to look into Java Applets.
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004
>
>
>


Jul 22 '05 #6
"Tarek" <Ta***@discussions.microsoft.com> wrote in message
news:32**********************************@microsof t.com...
hi,
May I want to know ASP or Javascript can generate a chart (pie chart) ?
or other method can do that?

I feel appreciate that anyone can help me ! ^^'


Here's a link with a number of different options:
http://www.4guysfromrolla.com/webtec...e/Graphing.asp

In particular, you should check out Office Web Components (OWC). I've always
felt that OWC doesn't get as much attention as it deserves, especially
considering that OWC in Office XP is a full fledged server-side graphing
engine suitable for web applications. You can even output directly to
streams such as the Response object.
Jul 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Thierry Lam | last post by:
Let's say I have the following data: 500 objects: -100 are red -300 are blue -the rest are green Is there some python package which can represen the above information in a pie chart?
9
by: Patrick.O.Ige | last post by:
I have a code below and its a PIE & BAR CHART. The values now are all static but I want to be able to pull the values from a database. Can you guys give me some ideas to do this? Thanks ...
1
by: rkbnair | last post by:
I created a pie chart in an aspx. However, how can I display the data in the piechart itself in the right location? The code is as follows: (Please see the definition of float x and float y) ...
8
by: LB | last post by:
Hello everybody I'm learning how to create pie chart using OWC. I'm able now to create a pie. But I can not figure out how to do the following : - for each pie, when mousing over, I would like...
5
by: Tomaz Koritnik | last post by:
Anyone knows of free or commercial pie chart control that has this features: - I need only 2D pie chart type - Can be commercial but not too expensive - Save chart to WMF or EMF - Since chart...
0
by: farid25 | last post by:
i want to use data set instead of arrays can any one help thanks --------------------------------- <%@ Import Namespace="System.Drawing" %> <%@ Import Namespace="System.Drawing.Imaging" %>
0
by: JohnnyB | last post by:
I've been wrestling with this off and on for a few days and came close but it's still not right. I'll try to explain it as best I can. I created a report with a pie chart on the first page that...
23
by: muddasirmunir | last post by:
i had developed an accouting software and in this i made some chart for this i used MSChart . As long as charting is concerned it is working fine all the chart is showing the desired results. the...
0
by: maxx429 | last post by:
Hi all, I am posting this question for a co-worker. She knows very little about Access but has been asked to create some reports. One the requirements is that the report contain a Pie Chart...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.