Hello,
I'm new has developer in esri products.
I'm having trouble with this method. I'm trying to create a chorolopeth map using esriClassifyNaturalBreaks, but the API reference doesn't mention any argument for the number of breaks, i found it in a video for other method (sdf.spatial.plot), the argument is "class_count=", and it works, i don't know why it is not in the documentation. But surprisenly the argument "method = ", does not work at all. No matter the value used it creates the same renderer. Am i doing something wrong here?
renderer_classed = arcgis.mapping.renderer.generate_renderer(geometry_type = 'Polygon',
sdf_or_series = sdf,
render_type ='c',
colors = 'Reds',
method = 'esriClassifyNaturalBreaks',
field = 'media_10',
class_count = 5)
Which is the best way to create a renderer in python arcgis API?
Thanks