Administration 

Marker Tags From TypoScript 

Marker tags can be created from TypoScript and used in charts. In the following example the marker MyMarker takes the value MyValue.

plugin.tx_savcharts.settings.marker.myMarker = TEXT
plugin.tx_savcharts.settings.marker.myMarker.value = MyValue   
Copied!

Marker Replacement in Queries 

Marker replacement can also be performed in queries. The following example shows how to define the marker MyMarker associated with the query whose uid is equal to 1. The marker value MyValue will replace any marker ###MyMarker### in the query clauses.

plugin.tx_savcharts.settings.customQuery = COA
plugin.tx_savcharts.settings.customQuery.1.MyMarker = TEXT
plugin.tx_savcharts.settings.customQuery.1.MyMarker.value = MyValue
Copied!