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
485
Column Chart - How to make bar color and bar border color the same.
posted

I have a Column chart with columns colored green with their edge in very dark green/black shade. How do I make the two same so that the separation from one column to another is not visible?

In short, how to make the border of a column to have the same shade as the column?

Thanks

Anil

Parents
No Data
Reply
  • 485
    posted

    private void WeightSelectionChart_FillSceneGraph(object sender, Infragistics.UltraChart.Shared.Events.FillSceneGraphEventArgs e)
            {
                if (e.Grid.Count == 0) return;
                xAxis = (IAdvanceAxis)e.Grid["X"];
                yAxis = (IAdvanceAxis)e.Grid["Y"];
                foreach (Primitive p in e.SceneGraph)
                {
                    Box bar = p as Box;
                    if (bar != null)
                    {
                        bar.PE.Stroke = this.BarColor;
                    }
                }
     }

Children
No Data