Technote Details :: I want to turn peak marker display on
Issue
Charts generated by MX Dynamic Charts are displayed without markers for peak values. I want to turn them on, but there is no option in the user interface.
Reason
By default, MX Dynamic Charts comes with the peak markers OFF for the Line chart. There is no option in the user interfaces that will allow changing this setting.
Solution
You can however toggle the marker display by adjusting a parameter in the code, by editing the following files:
- For PHP -/includes/MXCharts/mx_charts.inc.php
- Change the false value into true: $this->markers = false;
- For ASP -/includes/MXCharts/mx_charts.inc.asp
- Change the false value into true: LineChart_UseDotMarkers = False
- For ColdFusion - /includes/MXCharts/mx_charts.cfm
- Change the no value into yes: <cfparam name="Attributes.setMarkers" type="string" default="no">
