Thanks for the information.
Ok, you can create and populate histogram series like this:Now I am okey to draw line series using TeeChart . but I am not able to understanding how I will draw Histogram using TeeChart .
I am having four coordinates i.e left , right , top , bottom to draw histogram but I don't know which are the methods or properties required to draw histogram series. also I don't know how to fill color in histogram series.
So could you please send me some sample code for MS VC++ technology which contains example to draw histogram series using Teechart activeX .
Code: Select all
long series1;
series1 = m_Chart1.AddSeries(scHistogram);
m_Chart1.Series(series1).SetColor(RGB(255,0,0));
for (int i=0; i<10; i++)
{
m_Chart1.Series(series1).AddXY(i,i,"",clTeeColor);
}
As I told you before, to obtain full documentation and examples you need to download the full TeeChart Pro v5 ActiveX installer at our customer download area.You had suggested me to use following,
For further information about VC++ applications with TeeChart please read Tutorial 15 - MS VC++ Applications and have a look at the examples at C:\Program Files\Steema Software\TeeChart Pro v8 ActiveX Control\Examples\Visual C++. I also recommend you to have a look at Tutorial 7 - Working with Functions
but I don't have these materials on my machine .