Something like this compiles, but the custom property won't show up in the data series when I select the bar type
public class MyCustomBarType: BarsType
{
.....
[Display( Name = "X offset", GroupName = "01. Colors", Order = 1)]
public int XOffset { get; set; }
...
}

Comment