Re: Dynamic SVG bar graph

2005-07-27 Thread Derek Hohls
Jarry Most other browsers will support the use of a plugin for the viewing of SVG; IMO the Adobe one is good one to get (though it does have a bias towards IE). Derek [EMAIL PROTECTED] 2005/07/26 11:41:29 PM Joerg, Thanks again for you help. I am using Mac OS X and Safari as the browser, so

Re: Dynamic SVG bar graph

2005-07-27 Thread Derek Hohls
Jarry You need a suitable HTML link to the SVG source e.g. embed height=400 width=500 type=image/svg+xml url=mysource/myfile.svg / [EMAIL PROTECTED] 2005/07/26 08:37:18 PM Hi, Benni Thanks for your kindness. Now I can get SVG from MathML and can output it with svgxml serialize.

Re: Dynamic SVG bar graph

2005-07-27 Thread Jarry Liu
Derek and every one, Thanks for your kind help. Finally, I got it by using object type=image/svg+xml data=tmpsvg.svg width=420 height=50 /object, which links the SVG source to my html file. Here is my sample code: !-- sample.xml -- ?xml version=1.0? sample step1 p step1 /p

Re: Dynamic SVG bar graph

2005-07-26 Thread Jarry Liu
Hi, I am very interested with this topic. Can you give me more information about this SVG and Fragment Extractor? I use JEuclid to tansform MathML and present it with SVG. But in the output, I want add other html stuff in it. How can I do it? Here is part of the code I used: map:generate

Re: Dynamic SVG bar graph

2005-07-26 Thread Joerg Heinicke
On 26.07.2005 18:55, Jarry Liu wrote: I am very interested with this topic. Can you give me more information about this SVG and Fragment Extractor? The FragmentExtractor{Generator|Transformer} can be found in the batik block in 2.1.7 or in the core since a few days (as it is not really tied

Re: Dynamic SVG bar graph

2005-07-26 Thread Jarry Liu
Joerg, Thanks a lot for your reply. Yes, I can also add some html stuff in svg file to reach my goal. What I mostly concern is how I can output html and svg in the same page. Is there any other serializer I can use to show svg except svgxml? On 7/26/05, Joerg Heinicke [EMAIL PROTECTED] wrote:

Re: Dynamic SVG bar graph

2005-07-26 Thread Jarry Liu
Hi, Benni Thanks for your kindness. Now I can get SVG from MathML and can output it with svgxml serialize. What I want to do is show this SVG with some html stuff in the same output. Do you have any suggestions? If you can share your code, that will be great! Jarry On 7/26/05, Benjamin

Re: Dynamic SVG bar graph

2005-07-26 Thread Joerg Heinicke
On 26.07.2005 19:50, Jarry Liu wrote: Yes, I can also add some html stuff in svg file to reach my goal. What I mostly concern is how I can output html and svg in the same page. Is there any other serializer I can use to show svg except svgxml? From what I see FragmentExtractor* is really the

Re: Dynamic SVG bar graph

2005-07-26 Thread Jarry Liu
Joerg, Thanks again for you help. I am using Mac OS X and Safari as the browser, so it may be the reason why I can't get htm + svg together. I will try other browers later. Jarry From what I see FragmentExtractor* is really the wrong for you. But there is nothing special about the svgxml

Re: Dynamic SVG bar graph

2005-04-30 Thread Luca Morandini
Dustin N. Jenkins wrote: Hello and thanks for reading this. I'd like to create a dynamically generated SVG bar graph for a scheduling system. The resulting table will display the weekdays along the top, and bars beneath them indicating for what days of the week a schedule will cover. I've

Dynamic SVG bar graph

2005-04-29 Thread Dustin N. Jenkins
Hello and thanks for reading this. I'd like to create a dynamically generated SVG bar graph for a scheduling system. The resulting table will display the weekdays along the top, and bars beneath them indicating for what days of the week a schedule will cover. I've been painstakingly doing it