get { return Values[x]; }
It is easy to do this with other indicator parameters. For instance, you can change the GroupName from the default “Parameters” to a custom name of your choosing. You can also set the display order of the particular property using Order= (see below).
[NinjaScriptProperty]
[Display(Name="LineAColor", Order=1, GroupName="Custom Subcategory Name Here")]
public string LineAColor
{ get; set; }

Comment