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
280
Spaces between Colums/bars for Composite Chart control
posted

I am using,

igchart

:UltraChart chart type="CompositeChart"......

 

:UltraChart chart type="CompositeChart"......

:UltraChart chart type="CompositeChart"......

Is there any property for setting the space between the Columns/bars for Composite chart ?

As, we were having for Column chart (columnspacing, seriesspacing) attributes.

 

Thank in Advance.

  • 17605
    posted

    Hi,

    You can set ColumnChartAppearance for the Column Layer. Try using this:

    <ChartLayers>

                    <igchartprop:ChartLayerAppearance AxisXKey="axis1" AxisYKey="axis2"

                        ChartAreaKey="area1" ChartType="ColumnChart" Key="chartLayer1"

                        SeriesList="series1">

                        <ChartTypeAppearances>

                            <igchartprop:ColumnChartAppearance ColumnSpacing="1" SeriesSpacing="2">

                            </igchartprop:ColumnChartAppearance>

                        </ChartTypeAppearances>

                    </igchartprop:ChartLayerAppearance>