Can we increase NT8 chart capacity via NinjaScript?
I see 2 ways:
- window border thickness;
- Y axis width and font size.
I tried
if (State == State.Configure)
{
ChartControl.AxisYLeftWidth = 10;
}
Tried also:
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
ChartControlProperties myProperties = chartControl.Properties;
myProperties.ChartControl.AxisXHeight = 10;
}

Comment