Hide scroll bar on Legend
Hide scroll bar on Legend
How is the Legend scroll bar made invisible. I cannot find the property.
Re: Hide scroll bar on Legend
Hello lilo,
I suggest use property Active to hide the scroll bar tool when you want, I think you can do something as next:
Can you please, tell us if previous code works as you expected?
I hope will helps.
Thanks,
I suggest use property Active to hide the scroll bar tool when you want, I think you can do something as next:
Code: Select all
Steema.TeeChart.Styles.Points series1;
Steema.TeeChart.Tools.LegendScrollBar LegendScrollBar;
private void InitializeChart()
{
LegendScrollBar = new Steema.TeeChart.Tools.LegendScrollBar(tChart1.Chart);
series1 = new Points(tChart1.Chart);
series1.FillSampleValues();
checkBox1.Checked = true;
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
LegendScrollBar.Active = checkBox1.Checked;
}
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Hide scroll bar on Legend
Yes, it works
Thanks,
Thanks,