You are viewing documentation for an older version. For current documentation - click here.

You can change the default "About FusionCharts" context menu item to show your label and link it to your own Url using:

<chart yAxisName='Sales Figure' caption='Top 5 Sales Person' numberPrefix='$' useRoundEdges='1' showAboutMenuItem='1' aboutMenuItemLabel='About My Company' aboutMenuItemLink='n-http://www.mycompany.com'> 
     <set label='Alex' value='25000'  /> 
     <set label='Mark' value='35000' /> 
     <set label='David' value='42300' /> 
     <set label='Graham' value='35300' /> 
     <set label='John' value='31300' />
  </chart>
{
  "chart":{
    "yaxisname":"Sales Figure",
    "caption":"Top 5 Sales Person",
    "numberprefix":"$",
    "useroundedges":"1",
    "showaboutmenuitem":"1",
    "aboutmenuitemlabel":"About My Company",
    "aboutmenuitemlink":"n-http://www.mycompany.com"
  },
  "data":[{
      "label":"Alex",
      "value":"25000"
    },
    {
      "label":"Mark",
      "value":"35000"
    },
    {
      "label":"David",
      "value":"42300"
    },
    {
      "label":"Graham",
      "value":"35300"
    },
    {
      "label":"John",
      "value":"31300"
    }
  ]
}

This results in a menu item as shown below. The link has been specified in FusionCharts Link format, and n- prefix opens the link in a new window.