views:

19

answers:

2

i am generating a chart map like this:

&chtm=usa">http://chart.apis.google.com/chart?chs=440x220&cht=t&chco=CBD122&chld=US&chd=s:&chtm=usa

alt text

does anyone know if there is a feature to do something on mouseover? like have each state turn a different color on mouse over?

+1  A: 

This is a response to your last question. Roll your own.

This is relatively simple. Grab an available svg map of the US. Clean it up to match your theme. Change fill colors and whatever else. Add some javascript for the mouseover effect.

This site may have exactly what you need. Well presented too.

buckbova
thank you very much, i asked this: http://stackoverflow.com/questions/3504384/svg-how-do-i-do-a-mouse-over-effect
I__
@buckbova: can u please show me how to do a mouse over effect? like displaying a message or changing color of the state?
I__
+2  A: 

If all you want is a hover effect you can add a simple stylerule e.g

*:hover { fill: green !important }

I found the !important part to be necessary for most maps on wikipedia. Anyway, I have some examples:

Erik Dahlström