Reputation: 493
I have a requirement where the marker points(graphics) on the esri map should be a dynamic pie chart with a data set of its own.
Is this possible using ArcGIS javascript API?
Upvotes: 0
Views: 427
Reputation: 1387
It kind of depends, how you want to use it. If you just want to visualize the points as Charts, the most simplest way is to create the symbology in ArcMap and host its as a map service. According to the supported functionality for ArcGIS Server. Charts are also supported.
If you cannot create a service, and would want to create charts runtime in Javascript. Then the only option would be to create the charts as images and add the Point on map with PictureMarkerSymbol.
Upvotes: 1