In the search query, I am trying to view a csv dataset that shows clusters on a map. I manage to get a visualisation with different sized bubbles based on the values, bigger bubbles for bigger values. However, once i add it to an existing dashboard, the bubbles disappear. When i navigate to "Data Configurations" -> "Layer Type" to "Marker", now the dashboard has the clusters, however they are markers of the same size instead of bubbles sized to different values. Here is the source code of my visualisation: { "type": "splunk.map", "options": { "center": [ 1.339638489909646, 103.82878183020011 ], "zoom": 11, "baseLayerTileServer": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "baseLayerTileServerType": "raster", "layers": [ { "type": "marker", "latitude": "> primary | seriesByName('latitude')", "longitude": "> primary | seriesByName('longitude')", "bubbleSize": "> primary | frameWithoutSeriesNames('_geo_bounds_east', '_geo_bounds_west', '_geo_bounds_north', '_geo_bounds_south', 'latitude', 'longitude') | frameBySeriesTypes('number')", "seriesColors": [ "#7b56db", "#cb2196", "#008c80", "#9d6300", "#f6540b", "#ff969e", "#99b100", "#f4b649", "#ae8cff", "#8cbcff", "#813193", "#0051b5", "#009ceb", "#00cdaf", "#00490a", "#dd9900", "#465d00", "#ff677b", "#ff6ace", "#00689d" ] } ] }, "dataSources": { "primary": "ds_TmJ6iHdE" }, "title": "Dengue Clusters", "context": {}, "containerOptions": {}, "showProgressBar": false, "showLastUpdated": false }
... View more