You must Sign In to post a response.
  • Category: Sharepoint

    DashBoard Chart Data Labels

    Dear Friends

    How to data labels to Bar Chart from Performance Point Services.
  • #766438
    Hi,

    Could you please describe more to help you better.

    --------------------------------------------------------------------------------
    Give respect to your work, Instead of trying to impress your boss.

    N@veen
    Blog : http://naveens-dotnet.blogspot.in/

  • #766529
    If you want Barchart program I will give the link below which is having detailed description with output images..

    http://www.dotnetspider.com/resources/45290-Chart-Control-Console-Application-Saving-an-image-or-sending-Mail.aspx

    SRI RAMA PHANI BHUSHAN KAMBHAMPATI

  • #766533
    Dear Friend

    I am trying to add data labels to a stacked bar chart in sharepoint Dashboard Designer 2013 from cube data. The labels not appear in the bars . The labels appear when I hover over the bar. But what I would like to know is how to have that information display in the bar itself. Is there anyway to do this?

  • #766891


    System.Web.UI.DataVisualization.Charting.ChartArea chartarea = new System.Web.UI.DataVisualization.Charting.ChartArea("Chartarea");
    chartarea.AxisX.MajorGrid.Enabled = false;
    chartarea.AxisY.MajorGrid.Enabled = false;
    Chart1.ChartAreas.Add(chartarea);
    Chart1.ChartAreas["Chartarea"].Area3DStyle.Enable3D = true;
    Chart1.ChartAreas[0].Area3DStyle.Inclination = -20;
    Chart1.DataBind();
    Chart1.ChartAreas[0].AxisX.Interval = 1;
    Chart1.Series[0].IsValueShownAsLabel = true;
    Random random = new Random();
    foreach (var item in Chart1.Series[0].Points)
    {
    System.Drawing.Color c = System.Drawing.Color.FromArgb(random.Next(0, 255), random.Next(0, 255), random.Next(0, 255));
    item.Color = c;
    item.IsVisibleInLegend = true;
    }


    SRI RAMA PHANI BHUSHAN KAMBHAMPATI


  • Sign In to post your comments