如何禁用Fusioncharts图例区域?

时间:2012-03-01 22:43:48

标签: fusioncharts

使用FusionCharts时如何禁用/删除图例区域?我将使用一个非常小的图表,因此没有必要使用图例区域。

2 个答案:

答案 0 :(得分:7)

添加showLegend ='0'标记应禁用它。像这样使用它:

<chart showLegend='0'...>

查看FusionCharts Legend API以获取有关传说的更多帮助。

答案 1 :(得分:0)

如何将图例属性设置为我的Fusion Graph。我的代码就像这样。

   public Pie2DChart GetServiceEsclationChart(DataTable BarChartdt, string CaseType)
    {
        Pie2DChart oChart3 = new Pie2DChart();

        // Set properties
        oChart3.Background.BgColor = "ffffff";
        oChart3.Background.BgAlpha = 50;
        oChart3.ChartTitles.Caption = "Case Type Count";
        oChart3.ChartTitles.Caption = CaseType;
        // oChart.ChartTitles.SubCaption = "2013-2014 Year";

        // Set a template
        oChart3.Template = new Libero.FusionCharts.Template.OfficeTemplate();

        // Set data             
        oChart3.DataSource = BarChartdt;
        oChart3.DataTextField = "Name";
        oChart3.DataValueField = "Value";


        //Load it into ViewData.
        // ViewData["SREsclation"] = oChart3;
        return oChart3;
    }