Is there a way I can specify or draw a custom size symbol - size varies from say 1 to 10?
When I look at the posts, it looks like the SymbolIconSize is restricted to a predefined set of sizes - Large, Medium, Small etc..
That works great.
Stretching that a little more, how can we set size for individual data points based on some data value?
Thanks
Anil
you can technically set a size other than Large, Medium, Small:
this.ultraChart1.ScatterChart.IconSize = (SymbolIconSize)80;
but I'm unsure if you will run into any issues by stepping out of bounds in this regard as I'm not certain this was intended to be allowed.
-Graham