Jump to content
Software FX Community

Colors of bars


User (Legacy)

Recommended Posts

The easiest way to do this would be using a Conditional Attribute as 

follows:

ConditionalAttributes conditional = chart1.ConditionalAttributes[0];

conditional.Condition.From = double.NegativeInfinity;

conditional.Condition.To = 0;

conditional.Condition.ToOpen = true; // You don't want values equal to zero

to be red

conditional.Color = Color.Red;

--

FP

Software FX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...