I want to build a web service providing html which including image URL and image map, so the web service client user can write ajax reactions. I did build the web service and include the image URL no problem, but I can't find any TeeChart function which will generate the clickable area code of the chart. For example below:
Code: Select all
<map name="demo">
<area shape=rect coords="25,20,75,82" href="javascript:alert('hello')">
<area shape=circle coords="130,50,25" href="javascript:alert('hello')">
<area shape=polygon coords="203,28,232,80,180,80" href="javascript:alert('hello')">
<area shape=polygon coords="272,30,305,30,318,43,292,76,260,47" href="javascript:alert('hello')">
</map>
<img src="http://127.0.0.1/images/map.jpg" usemap="#demo" border=0>
Thanks in advance.