Triangles in bubble serie RUN TIME
Posted: Wed Jul 06, 2005 11:22 am
I want to display triangles on my bubble serie (there is no problems to set it in design time). but I want to do in in run time.
here is my code smple
m_teechart.RemoveAllSeries();
m_teechart.AddSeries(9);
m_teechart.GetAxis().GetBottom().SetMinMax(0, 50);
m_teechart.GetAxis().GetRight().SetMinMax(0, 50);
m_teechart.GetAxis().GetLeft().SetMinMax(0, 50);
m_teechart.GetAxis().GetBottom().SetTickLength(5);
m_teechart.Series(0).SetHorizontalAxis(1);
m_teechart.Series(0).SetVerticalAxis(0);
m_teechart.Series(0).GetPen().SetStyle(chasTriangle);
m_teechart.Series(0).GetAsBubble().AddBubble(5 , 5, 2, "fsdfs", RGB(rand()%255, rand()%255, rand()%255));
here is my code smple
m_teechart.RemoveAllSeries();
m_teechart.AddSeries(9);
m_teechart.GetAxis().GetBottom().SetMinMax(0, 50);
m_teechart.GetAxis().GetRight().SetMinMax(0, 50);
m_teechart.GetAxis().GetLeft().SetMinMax(0, 50);
m_teechart.GetAxis().GetBottom().SetTickLength(5);
m_teechart.Series(0).SetHorizontalAxis(1);
m_teechart.Series(0).SetVerticalAxis(0);
m_teechart.Series(0).GetPen().SetStyle(chasTriangle);
m_teechart.Series(0).GetAsBubble().AddBubble(5 , 5, 2, "fsdfs", RGB(rand()%255, rand()%255, rand()%255));