I'm developing an indicator that has several string input parameters. My objective is to attach a boolean/check box input along with each string input. I'm able to place one check box below each string input parameter using code like this:
[NinjaScriptProperty]
[Display(Name = "RedTime", Order = 1, GroupName = "Settings")]
public string RedTime
{ get; set; }
[NinjaScriptProperty]
[Display(Name = "Red", Order = 2, GroupName = "Settings")]
public bool Red
{ get; set; }
With this code, I'll see two rows for each pair (one for string input and the other for checkbox input) in the indicator settings. Because there are several pairs, I need an arrangement like these two appear in one row i.e. the check box appears in the same row as that of the string input parameter either before or after it. In this way, there would not be an additional row for every check box. Is it possible in Ninja Script? Please help if there is such a property or a data type which can make this arrangement possible?
Thanks

Comment