I have a project that uses clustering and I find the documentation very sparse. I have a sample that draws OK, but there are very few clusters and they have quite a few points in them. What parameters do I need to set to have the clusters be more spread out with fewer points in them. This map covers the whole state and tehre is plenty of space.<esri:FlareSymbol id="flareSymbol"
flareMaxCount="30"
flareSizeIncOnRollOver="2"
sizes="[20,30]"
textFormat="{tf}"
weights="[30,60]"/>
<esri:WeightedClusterer id="clusterer" symbol="{flareSymbol}">
<esri:center>
<!--
x/y values are from the below extent x/y min/max values, these are the center of the extent.
To make sure that you have the same clusters every time and independently of the map size and extent, these values have to set explicity,
or you can let the cluster pick the map center at runtime.
-->
<esri:MapPoint x="{(-14477000-6677000)*0.5}" y="{(2273000+8399000)*0.5}"/>
</esri:center>
</esri:WeightedClusterer>
This is from an online sample and I'm pretty sure I need to change the mapPoint to fall in the middle of the state. Does someone have some links a little more detailed explanation on using clustering? It looks really interesting; I can't believe I haven't found more when I've searched on the forums.