Pointer.Transparency behaviour
Posted: Tue Jun 09, 2009 4:25 pm
Hi, team. I'm using version 2.0 of Teechart library.
I would like to write code like this
Suddenly it works only for every point except the first one. Could you help me to undertand the problem here or provide the workaround for this issue if possible?
I would like to write code like this
Code: Select all
private void Test()
{
Points points = new Points();
...
points.GetPointerStyle += SomeMethod;
}
private void SomeMethod(CustomPoint series, CustomPoint.GetPointerStyleEventArgs e)
{
if (someCondition)
{
series.Pointer.Transparency = 100;
}
else
{
series.Pointer.Transparency = 0;
}
}