Hi,
1) How to Move Full Data From Histogram1 toFastLine1 in one assigne?
2) Suppose I have column 1,2,3,4, …etc in Histogram1 such as:
(x,y) = (1,50), (2,350), (3,150)….
and I want to get all value Data for example
x = 1 => y = 50
x = 3 => y = 150
Thx
Rabbit!
Move Full Data From Histogram1 toFastLine1?
Re: Move Full Data From Histogram1 toFastLine1?
Hello Rabbit,
I hope that will helps.
Thanks,
Yes, if you want to assigne all data of either series type you have use property of series DataSource.1) How to Move Full Data From Histogram1 toFastLine1 in one assigne?
I make a simple example, I think that you could use in your application.2) Suppose I have column 1,2,3,4, …etc in Histogram1 such as:
(x,y) = (1,50), (2,350), (3,150)….
and I want to get all value Data for example
x = 1 => y = 50
x = 3 => y = 150
Code: Select all
private Steema.TeeChart.Styles.FastLine fastline1;
private Steema.TeeChart.Styles.Histogram histogram;
private void InitializeChart()
{
fastline1 = new Steema.TeeChart.Styles.FastLine(tChart1.Chart);
histogram = new Steema.TeeChart.Styles.Histogram(tChart1.Chart);
histogram.Visible = false;
histogram.FillSampleValues(10);
fastline1.DataSource = histogram;
}
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: Move Full Data From Histogram1 toFastLine1?
Many Thanks!