Hi Wang, is really easy to create tokens with drilldown. But you need to edit the source with xml, Example:
<chart>
<search>
<query>YOUR SEARCH</query>
</search>
<option name="charting.chart">column</option>
<option name="charting.fieldColors">{"FATAL":0x006400, "WARN":0xD2691E, "INFO":0x228B22}</option>
<option name="charting.axisLabelsX.majorLabelStyle.rotation">0</option>
<option name="charting.axisTitleX.visibility">collapsed</option>
<option name="charting.axisTitleY2.visibility">collapsed</option>
<option name="charting.axisY.scale">log</option>
<drilldown>
<set token="token_click">$click.value$</set>
<set token="token_name">$click.name$</set>
<set token="token_result_value">$row.<name of label>$</set>
</drilldown>
</chart>
The focus here is the tag drilldown.
You can use value, value2, name, name2 and row.the_name_of_the_value
can you give a example on what information do you wanna create a token?
... View more