Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
Removing space in between chart data
posted

Hi,

   Is there a way or a possible work around to remove the spaces in between the chart data? For example, a bar graph that shows different chart data with each bar lying on top of the previous or the next bar without any spaces between them. How will I do this?

Thanks in advance.

Parents
No Data
Reply
  • 17605
    posted
    You can try using: 

    <igCA:XamChart Name="xamChart1">

    <igCA:XamChart.Series>

    <igCA:Series ChartType="Column">

    <igCA:Series.ChartParameters>

    <igCA:ChartParameter Type="PointWidth" Value="1.25" />

    </igCA:Series.ChartParameters>...

    The bars width by default is 80% of the available space, so if you multiply the width with 1.25 this will be the whole space.

Children
No Data