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.

 

Parents
  • 2009
    posted

    Hi Guys,

    Please let me know if my two issues above are not clear or you need any more details on this.

    And if its currently not possible to resolve the two issues, then also please confirm that.

    Thanks a lot.

Reply Children