ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Discrete Heat Map Cell Border line
Posted by mingeun.ahn on Mar-14-2024 17:09
Attachments:
Can i control the DiscreteHeatMapLayer's cell border line?
i want none border line.

I changed the diameter 20 -> 250 of the sample code wafermap.
And the layer became dark.

I think it's the influence of the border line of the cell.
discrete__.png

  Re: Discrete Heat Map Cell Border line
Posted by Peter Kwan on Mar-15-2024 00:42
Hi mingeun.ahn,

Try to set the border color to "SameAsMainColor". The exact syntax depends on your programming language. It is Chart.SameAsMainColor for C#/Java/VB(NET), Chart::SameAsMainColor for C++, SameAsMainColor for Python/PHP and $perlchartdir::SameAsMainColor for Perl.

For example, for C++, it is:

layer->setBorderColor(Chart::SameAsMainColor);

for C#, it is

layer.setBorderColor(Chart.SameAsMainColor);

Best Regards
Peter Kwan

  Re: Discrete Heat Map Cell Border line
Posted by mingeun.ahn on Mar-15-2024 15:15
Thanks !!! :)