VerticalLineVisible
property
Chart grid vertical line visibility
Syntax
public bool VerticalLineVisible { get; set; }
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
using PTLRuntime.NETScript.Charts;
namespace ChartPropertiesExamples
{
public class ChartPropertiesExamples : NETStrategy
{
public override void Init()
{
CurrentChart.Settings.Grid.VerticalLineVisible = false;
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.