Jump to content
Software FX Community

CarlosAC

Members
  • Posts

    204
  • Joined

  • Last visited

Posts posted by CarlosAC

  1. Dear Keith. You can reduce the space between pies, you should use Volume property:

    Chart1.Volume = 100.

     

    Also, you can increase the chart area size, thus reducing the gap:

    Chart1.RightGap = -1

    Chart1.LeftGap = -1

    Chart1.BottomGap = -1

    Chart1.TopGap = -1

  2. Dear Shane.  I am attaching a sample project where you

    can see some interaction with the mouse (mouse move) and with a ListBox, you can add flags to the chart with a short description inside the ListBox  I hope this helps you to implements RSS feed on Chart.

  3. Dear Stephen.  To change color to a pyramid chart, you
    need to change color to points (chart1.Points[0].Color
    = Color.Red;
    ). 

    Unfortunately, Chart FX API does not provide a property to
    customize Pyramid width. As a workaround, you can modify PlotAreaMargins (chart1.PlotAreaMargin.Bottom
    = -1;
    ).  I hope this helps.

×
×
  • Create New...