Jump to content
Software FX Community

sergeiz

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by sergeiz

  1. Hi, is it possible to render labels that show next to bubbles a link? I was able to make bubbles links.

     for (int i = 0; i < chart.Data.Points; i++)
      {
      obj = chart.AxisX.Labels;

      chart.Points[0, i].MarkerSize = 5;
      chart.Points[0, i].Text = obj; --> this is what should be a link
      chart.Points[0, i].Link.Url = "/Details.aspx?cat=" + obj;  
      }

     

    Thanks!

  2. Hi, I was wondering if there is a way to label area between ticks. For example, I can label my ticks 0,25,50,etc but ideally I want to have some text appear between 0 and 25, 25 and 50, etc and not have 0,25,50 under ticks. I can probably use Annotations but then I have to worry about exact positioning.

    See attached for more details.

    Thanks in advance,

    Sergei

  3.  Chart20.Extensions.Clear();   Annotations annots = new Annotations();   Chart20.Extensions.Add(annots);   AnnotationPicture logo = new AnnotationPicture();   logo.Picture = System.Drawing.Image.FromFile(Path.Combine(Request.PhysicalApplicationPath, "images/misc/smalllogo.jpg"));   annots.List.Add(logo);   logo.Height = 40;   logo.Width = 74;   logo.Top = 292;   logo.Left = 0;   logo.PlotAreaOnly = false;   logo.Border.Color = Color.Transparent;

  4. Hi,

    I have 2 series in my chart (Sales_2010 and Sales_2014). How would I hide series text from showing up as a title? If I do

    series.Text = "";

    then it hides series text from Title area but it also hides it from DataGrid.

    So I'd like to keep series text in DataGrid but hide it as a Title.

    Thanks!

     file:///C:/Documents%20and%20Settings/Sergei/Desktop/chart.JPG

  5.  Hi,

    Can anyone tell me why "\n" is not working in following code

     Chart1.ToolTipFormat = "Channel: %L \n Growth: %x%% \n CAGR: %v%%";

    Here is what I want to have:

    Channel: Grocery

    Growth: 5%

    CAGR: 2%

     But instead it all shows up on 1 line.

    Thanks in advance.

×
×
  • Create New...