[svg-developers] Server-side SVG for .NET

2005-06-16 Thread Thamir Abdullatif
Greetings,

I am looking for a server-side SVG charting tool for .NET.

What do you think of Visual Mining's NetCharts Server? Any other 
alternatives?

The main features I am looking for are:

1. support for XML Web services
2. extracting SVG from XBRL

Regards,
Thamir





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[svg-developers] Re: problems...

2005-06-16 Thread rouille
Well, since this does not seem to be inspiring anybody *g*, I 
decided to mock up a small simple exemple that describes better 
problem #1. Here it is:


http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>












With this code, I would expect to have two squares that have the 
same animation, ie a border that grows and vanishes endlessly while 
the mouse is on it. When the mouse is out, I'd expect it to be quiet 
(no animation).

Actually, the square on the left (the in-line plain declared rect) 
is the way I want it to be. The one on the right (declared with 
 and instanciated with ) is NOT. The animation starts 
well, but it does not end onmouseout for this one.

So, is this a bug with Adobe's plugin (beta 6 on IE6), or am I doing 
wrong assumptions?

Thanks in advance for your inputs.

Brezh.





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[svg-developers] cookie

2005-06-16 Thread Erwan TROEL
i try to create a cookie when the user select an item in a menu but the
cookie is not created on the disk

my code:

sLHLeListener.prototype.handleEvent = function(evt) {

if (evt.type == "click") {

   var date_exp = new Date();
   date_exp.setTime(date_exp.getTime()+(365*24*3600*1000));

   SetCookie("repPDV","repPDV",date_exp);

   }

}




function SetCookie (name, value,expires) {
 var argv=SetCookie.arguments;
 var argc=SetCookie.arguments.length;
 var expires=(argc > 2) ? argv[2] : null;
 var path=(argc > 3) ? argv[3] : null;
 var domain=(argc > 4) ? argv[4] : null;
 var secure=(argc > 5) ? argv[5] : false;
 document.cookie=name+"="+escape(value)+
  ((expires==null) ? "" : ("; expires="+expires.toGMTString()))+
  ((path==null) ? "" : ("; path="+path))+
  ((domain==null) ? "" : ("; domain="+domain))+
  ((secure==true) ? "; secure" : "");

}


[Non-text portions of this message have been removed]



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[svg-developers] Generating the dynamic data

2005-06-16 Thread thequantimizer
hi ,
  i want to display the dynamic data that i m getting in the xml file 
on my svg map , the problem i am facing is the addition of tags , like 
i want to display data as circles , dynamicaly into my svg file . any 
advice on how to do that . can we create the svg item like an object 
and then assign property to that object and show it on the screen.

regards,
 
 Usman. 




-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [svg-developers] Server-side SVG for .NET

2005-06-16 Thread Don Demsak
One of the cool things about SVG on the server is that it is just XML,
so you really don't need a tool to generate the SVG.  If your source
is already XML (like in your case, XBRL), all you really need is XSLT
(well that is assuming you are willing to learn XSLT).

You can't extract SVG from any source, you have to transform it into
SVG, which is what the T in XSLT is all about.

Don


-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [svg-developers] Server-side SVG for .NET

2005-06-16 Thread Rick Bullotta
Agreed.  It is pretty easy to create classes for charts, axes, etc. that
will generate the appropriate SVG for you.  Using a few simple tricks
that leverage the "S" in SVG (Scaleable!) you can even avoid lots of
messy geometric calculations that you might otherwise have to perform
and still provide for fairly flexible chart layout.

-Original Message-
From: svg-developers@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Don Demsak
Sent: Thursday, June 16, 2005 7:43 AM
To: svg-developers@yahoogroups.com
Subject: Re: [svg-developers] Server-side SVG for .NET

One of the cool things about SVG on the server is that it is just XML,
so you really don't need a tool to generate the SVG.  If your source
is already XML (like in your case, XBRL), all you really need is XSLT
(well that is assuming you are willing to learn XSLT).

You can't extract SVG from any source, you have to transform it into
SVG, which is what the T in XSLT is all about.

Don



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [svg-developers] cookie

2005-06-16 Thread Erwan TROEL
i try to create a cookie when the user select an item in a menu but the
cookie is not created on the disk

my code:
this event is launched by the selection in the menu:

sLHLeListener.prototype.handleEvent = function(evt) {

if (evt.type == "click") {

   var date_exp = new Date();
   date_exp.setTime(date_exp.getTime()+(365*24*3600*1000));

   SetCookie("repPDV","repPDV",date_exp);

   }

}




function SetCookie (name, value,expires) {
var argv=SetCookie.arguments;
var argc=SetCookie.arguments.length;
var expires=(argc > 2) ? argv[2] : null;
var path=(argc > 3) ? argv[3] : null;
var domain=(argc > 4) ? argv[4] : null;
var secure=(argc > 5) ? argv[5] : false;
document.cookie=name+"="+escape(value)+
  ((expires==null) ? "" : ("; expires="+expires.toGMTString()))+
  ((path==null) ? "" : ("; path="+path))+
  ((domain==null) ? "" : ("; domain="+domain))+
  ((secure==true) ? "; secure" : "");

}


[Non-text portions of this message have been removed]



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [svg-developers] Generating the dynamic data

2005-06-16 Thread Holger Will
thequantimizer schrieb:

> hi ,
>   i want to display the dynamic data that i m getting in the xml file
> on my svg map , the problem i am facing is the addition of tags , like
> i want to display data as circles , dynamicaly into my svg file . any
> advice on how to do that . can we create the svg item like an object
> and then assign property to that object and show it on the screen.
>
> regards,
>
> Usman.

Hi Usman

you create tags with the createElement method of the document object:

var circle=document.createElementNS("http://www.w3.org/2000/svg","circle";)


and the set the circles attributes vie the setAttribute method:

circle.setAttribute("cx",50)
circle.setAttribute("cy",50)
circle.setAttribute("r",50)

until now nothing will get renderd, you do have a svg circle in memory 
now, to show the circle, you have to place it somewhere in your document,
you could use any of the following methods appendChild() , 
replaceChild() , insertBefore() , insertAfter().

so say your document looks like this:

http://www.w3.org/2000/svg";>




then your script do

var insertPoint=document.getElementById("insertPoint")
insertPoint.appendChild(circle)

so our test file looks like this:
http://www.w3.org/2000/svg"; onload="addCircle()">


function addCircle(){
var 
circle=document.createElementNS("http://www.w3.org/2000/svg","circle";)
circle.setAttribute("cx",50)
circle.setAttribute("cy",50)
circle.setAttribute("r",50)
var insertPoint=document.getElementById("insertPoint")
insertPoint.appendChild(circle)
}



hth
Holger



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[svg-developers] SVG Parser in VC++

2005-06-16 Thread P. Gnana Prakash
Hi Friends,

I am creating the SVG editor application. One of the requirement in my 
application is open the SVG file which is created in some other SVG 
editor. For that I need to parse the SVG file and read the xml content 
and make the corresponding drawing object. Please let me know, Is there 
any third party parser is available for that or any one did this kind 
of requirement.

Regards,
Prakash.




-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: Server-side SVG for .NET

2005-06-16 Thread wsmckenz
We have a big SVG application that uses both 'roll-your-own' SVG
using XSLT(as suggested by a couple of other posters), and ChartFX
(you can find more about it at www.softwarefx.com).  Overall, I'm
happier with doing my own through transformation.  You have more
control, no license fees, and its sort of more fun than just
programming a .NET control.  One problem with using XSLT to generate
charts, in particular, is that XSLT lacks some of the math functions
required for good charting (especially if you need to do things like 
log and semi-log graphs).
In .NET, however, it is quite trivial to create a 'Helper Class' with 
these functions in it, and add it to the transformation as an
extension object.
If you want a nice IDE-integrated approach, where you visually create
the chart, and just feed it the data, then ChartFX or NetCharts would
prolly be better.

~Bill

--- In svg-developers@yahoogroups.com, "Thamir Abdullatif" 
<[EMAIL PROTECTED]> wrote:
> Greetings,
> 
> I am looking for a server-side SVG charting tool for .NET.
> 
> What do you think of Visual Mining's NetCharts Server? Any other 
> alternatives?
> 
> The main features I am looking for are:
> 
> 1. support for XML Web services
> 2. extracting SVG from XBRL
> 
> Regards,
> Thamir




-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[svg-developers] [SVG Open] This friday last day for early-bird rate of worldevent

2005-06-16 Thread steltenpower
This friday is the last day at which you can save yourself 50 euros,
so go register at http://www.svgopen.org/2005/registration.html

If you don't yet know why you should go:
- Check our on-line schedule for all the interesting presentations and
workshops
- Know you can meet up with the W3C workgroup, major implementors,
vendors, expert developers, graphic artists, customers, etc. from
around the world
- Look through our website http://www.svgopen.org/2005
- You also want to try our campus-wide Wifi-based Location-Based
Services that we will launch then, have diner in a museum with the
dutch masters and more, etc.

Hope to see you in Enschede, the Netherlands, August 15-18.

Ruud Steltenpool
SVG Open 2005 team





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] How to debug SVG in Visual Interdev 6.0?

2005-06-16 Thread farid_isn
hello geng. How to debug SVG in Visual Interdev 6.0? 





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/