Skip to content

Commit 07e8d86

Browse files
committed
feat:added scatterplot3d chart to dashboard
1 parent 074c665 commit 07e8d86

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

packages/splunk_plotly_collection_viz/default/data/ui/views/overview_plotly_charts.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,27 @@
7878
<option name="trellis.size">medium</option>
7979
</viz>
8080
</panel>
81+
<panel>
82+
<title>Scatterplot 3D</title>
83+
<viz type="splunk_plotly_collection_viz.scatterplot3d">
84+
<search>
85+
<query>| makeresults count=100
86+
| streamstats count as id
87+
| eval trace = case(id &lt;= 30, "A",id &lt;= 70, "B",true(), "C")
88+
| eval x = random() % 100
89+
| eval y = random() % 100
90+
| eval z = random() % 100
91+
| eval marker_size = (random() % 50) + 1
92+
| table trace x y z marker_size</query>
93+
<earliest>-24h@h</earliest>
94+
<latest>now</latest>
95+
<sampleRatio>1</sampleRatio>
96+
</search>
97+
<option name="drilldown">none</option>
98+
<option name="trellis.enabled">0</option>
99+
<option name="trellis.scales.shared">1</option>
100+
<option name="trellis.size">medium</option>
101+
</viz>
102+
</panel>
81103
</row>
82104
</dashboard>

0 commit comments

Comments
 (0)