Is there any way to toggle the data points on and off via a radio button added to a dashboard? When doing line charts with long lengths of data, the numbers get tightly put together overlapping.
<form version="1.1" theme="light">
<label>Answers - Classic - Viz toggles</label>
<fieldset submitButton="false">
<input type="radio" token="tok_data_labels">
<label>Data Labels</label>
<choice value="none">Off</choice>
<choice value="all">On</choice>
<choice value="minmax">Min/Max</choice>
<default>none</default>
</input>
</fieldset>
<row>
<panel>
<chart>
<title>Viz Radio Toggle</title>
<search>
<query>index=_internal
| timechart span=5m limit=5 useother=t count by sourcetype</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="charting.chart">line</option>
<option name="charting.chart.showDataLabels">$tok_data_labels$</option>
<option name="charting.drilldown">none</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
</row>
</form>
<form version="1.1" theme="light">
<label>Answers - Classic - Viz toggles</label>
<fieldset submitButton="false">
<input type="radio" token="tok_data_labels">
<label>Data Labels</label>
<choice value="none">Off</choice>
<choice value="all">On</choice>
<choice value="minmax">Min/Max</choice>
<default>none</default>
</input>
</fieldset>
<row>
<panel>
<chart>
<title>Viz Radio Toggle</title>
<search>
<query>index=_internal
| timechart span=5m limit=5 useother=t count by sourcetype</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="charting.chart">line</option>
<option name="charting.chart.showDataLabels">$tok_data_labels$</option>
<option name="charting.drilldown">none</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
</row>
</form>