I am trying to create a Serial Chart from my webmap and apparently, I am unable to even start on the basics.
var portal = Portal('https://www.arcgis.com/');
var fs = FeatureSetByPortalItem(
portal,
'30d14060daaf4b298ef11a1101beb4a3',
0,
[
'Select a Project Unit',
'Select a Region',
'polygon_hectares'
],
false
);
The above-mentioned are the three fields of interest, I would like to create a serial chart with the "Select a Project Unit' field as the category field and Split by field 'Select a Region' and the statistic I would like to use as the sum for 'polygon_hectares/10000' field since it was recorded in square meters instead of hectares.
Any input will be appreciated, thanks