splunk.bar renders with axes flipped, no bars | Added "x": / "y": DOS options (those are scatter/bubble-only). | ds-viz-bar GOTCHAS #2 |
splunk.column renders no bars, flipped | Same trap as above. | ds-viz-column GOTCHAS #3 |
splunk.bar renders bars in random order | SPL didn't ` | sort - `. |
splunk.line series silently disappears | Field name starts with _ (other than _time). | ds-viz-line GOTCHAS #8 |
splunk.line log scale ate values | yAxisScale: "log" rejects ≤ 0; set yAxisMin: "1". | ds-viz-line GOTCHAS #4 |
splunk.area second / third tier flatlines | Largest series at top of stack — re-sort SPL. | ds-viz-area GOTCHAS #3 |
splunk.pie slice order random | Pie has no sort; ` | sort - ` in SPL. |
splunk.pie collapseThreshold collapses everything | It's a fraction (0–1), not a percent. 0.05 = 5%. | ds-viz-pie GOTCHAS #2 |
splunk.map empty basemap, no points | Bubble layer needs ` | geostats, NOT |
splunk.map choropleth all "no data" colour | Wrong key shape: geo_countries keys on full names (United States), geo://default/world keys on ISO-2 (US). | ds-viz-map GOTCHAS #3 |
splunk.map choropleth dies with Unexpected token 'N', "Null" is not valid JSON | tostring(NULL) → "Null". Add ` | where isnotnull(geom)BEFOREtostring`. |
splunk.map second layer disappears | Multi-layer marker + bubble (or + choropleth) is unreliable. Use separate panels. | ds-viz-map GOTCHAS #16 |
splunk.map bubble dataColors does nothing | Bubble uses > dataValues, NOT `> primary | seriesByName(...)`. |
splunk.choropleth.svg no fills | Path IDs case-sensitive; <rect> / <circle> not picked up — convert to <path>. | ds-viz-choropleth-svg Do/Don't |
splunk.singlevalueicon icon missing | Icon URL is per-instance — re-pick on the target Splunk via editor. | ds-viz-singlevalueicon Two valid forms |
splunk.singlevalueicon Title / Description don't show | Doesn't support panel title/description. Use sibling splunk.markdown. | ds-viz-singlevalueicon OPTIONS |
splunk.timeline category rejected | Must be DOS string `> primary | seriesByName('host'), not bare "host"`. |
splunk.sankey empty | Field names must be lowercase source / target / value — exactly. | ds-viz-sankey Do/Don't |
splunk.events field summary rail empty | Needs secondary dataSources.fieldsummary (ds.chain extending primary with ` | fieldsummary`). |
splunk.markdown table renders as raw ` | `-text | GFM pipe-tables not supported. Use bullet lists with bold field labels. |