FusionCharts - Customizing anchor cosmetics in a line chart

Created using FusionCharts Suite XT - www.fusioncharts.com

by FusionCharts

HTML

<script src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
<script src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
<!-- 
    Customizing anchor cosmetics in a line chart.
    Attributes:
        # anchorRadius - Set to 6
        # anchorBorderThickness - Set to 2
        # anchorSides - Set to 3
        # anchorBorderColor - Set to #127fcb
        # anchorBgColor - Set to #d3f7ff

    Deviation from theme:
        # showvalues - Set to 0
 -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var satisfactionChart = new FusionCharts({
    type: 'line',
    renderAt: 'chart-container',
    id: 'myChart',
    width: '500',
    height: '300',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "theme": "fusion",
        "caption": "Customer Satisfaction Averages",
        "subcaption": "Last week",
        "xaxisname": "Day",
        "yaxisname": "Satisfaction (In %)",
        "numbersuffix": "%",
        "showvalues": "0",
        //Anchor Cosmetics
        "anchorRadius": "6",
        "anchorBorderThickness": "2",
        "anchorBorderColor": "#127fcb",
        "anchorSides": "3",
        "anchorBgColor": "#d3f7ff",
        //Theme
        "theme": "fusion"

      },
      "data": [{
          "label": "Mon",
          "value": "22.5"
        },
        {
          "label": "Tue",
          "value": "42.4"
        },
        {
          "label": "Wed",
          "value": "28.2"
        },
        {
          "label": "Thu",
          "value": "22.8"
        },
        {
          "label": "Fri",
          "value": "39.2"
        },
        {
          "label": "Sat",
          "value": "66.45"
        }
      ]
    }
  });

  satisfactionChart.render();

});