FusionCharts - Gantt Charts - Customizing hover effect for connectors

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 hover effects for connectors in Gantt charts using attributes:

    # connectorHoverColor - To set the hover color of the connector lines(In Hex).
    # connectorHoverAlpha - To set the transparency of the hover color of the connector lines (0-100).
    # connectorHoverThickness - To set the thickness of the connector lines after the mouse cursor hover(In pixel).

-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var smoPlan = new FusionCharts({
    type: 'gantt',
    renderAt: 'chart-container',
    width: '750',
    height: '500',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "theme": "fusion",
        "dateformat": "mm/dd/yyyy",
        "caption": "Social Media Optimization",
        "subcaption": "Project Plan",
        //Customizing connectors on hover
        "connectorHoverColor": "#5b0101",
        "connectorHoverAlpha": "60",
        "connectorHoverThickness": "3"
      },
      "categories": [{
        "category": [{
            "start": "08/01/2014",
            "end": "08/31/2014",
            "label": "Aug '14"
          },
          {
            "start": "09/01/2014",
            "end": "09/30/2014",
            "label": "Sep '14"
          },
          {
            "start": "10/01/2014",
            "end": "10/31/2014",
            "label": "Oct '14"
          },
          {
            "start": "11/01/2014",
            "end": "11/30/2014",
            "label": "Nov '14"
          },
          {
            "start": "12/01/2014",
            "end": "12/31/2014",
            "label": "Dec '14"
          },
          {
            "start": "01/01/2015",
            "end": "01/31/2015",
            "label": "Jan '15"
          },
          {
            "start": "02/01/2015",
            "end": "02/28/2015",
            "label": "Feb '15"
          },
          {
            "start": "03/01/2015",
            "end": "03/31/2015",
            "label": "Mar '15"
          }
        ]
      }],
      "processes": {
        "fontsize": "12",
        "isbold": "1",
        "align": "right",
        "process": [{
            "id": "CUSTID_1",
            "label": "Identify Customers"
          },
          {
            "label": "Survey 500 Customers"
          },
          {
            "label": "Interpret Requirements"
          },
          {
            "label": "Market Analysis"
          },
          {
...