Draw.Rectangle(this, "MyBox"+g_startDateTime, g_startDateTime, highestHigh, g_endDateTime, lowestLow, MyBoxColor);
************************************************** ************************************************** **
Parameters of the box perform correctly; box is not responding to color designations.
The following are in place already:
State.SetDefaults
MyBoxColor = Brushes.RosyBrown;
Properties
[XmlIgnore]
[Display(ResourceType = typeof(Custom.Resource), Name = "MyBox Color", GroupName = "Colors", Order = 1)]
public Brush MyBoxColor { get; set; }
[Browsable(false)]
public string MyBoxColorSerialize
{
get { return Serialize.BrushToString(MyBoxColor); }
set { MyBoxColor = Serialize.StringToBrush(value); }
I read the library on this, just not getting it
...

... My mistake also, didn't read out the sample brush logic. Missing ingredient on my end was the autoscale bool. All good now thank you
Comment