"JJ" <nospam> wrote in message
news:406c7a2a$0 $256$cc9e4d1f@n ews.dial.pipex. com...[color=blue]
> Hi,
>
> Can anyone reccommend a decent chart/graph component to use with asp 3[/color]
(Not[color=blue]
> .net)
>
> Many Thanks
>
> JJ
>
>[/color]
"JJ" <nospam> wrote in message
news:406c7a2a$0 $256$cc9e4d1f@n ews.dial.pipex. com...[color=blue]
> Hi,
>
> Can anyone reccommend a decent chart/graph component to use with asp 3
> (Not
> .net)
>
> Many Thanks
>
> JJ
>
>[/color]
JJ wrote:[color=blue]
> Can anyone reccommend a decent chart/graph component to use with asp 3 (Not
> .net)[/color]
If your users have fairly current browsers, a killer option is to use
Scalable Vector Graphics (SVG), now is a W3C recommendation. You build a
description of the chart/drawing with XML (just as you build a
description of an HTML page) and send it to the browser with the HTML.
SVG is easy to write, efficient and is great for drawings, charts, etc.
Currently a browser plugin must be installed. Such a plugin is similar
to the Flash plugin. SVG plugins are available for most new browsers.
The following article shows how to do SVG in ASP:
"Generating Scalable Vector Graphics (SVG) on the Fly"
By David Botterman
Comment