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
2009
HeatMap Chart - How to generate border
posted

Hi,

 I have a Heatmap chart that I have customized so that each cell in the chart takes some predefined color. The issue is that the line common between two cells has double the color value (please see below image). Also I need to generate a border around the generated chart( area where the chart is drwan, not including the space for labels).

For coloring each cell, I have used the FillSceneGraph event as follows:

        foreach (Primitive p in e.SceneGraph)
            {
                if (p.Path == "Border.Title.Grid.Chart")
                {
                      p.PE.Fill = GetCustomColor(p.Row, p.Column);
                }
            }

Please see the image below describing the two issues.

Thanks in advance.