How to set Gradient direction in WinRose Circle
Posted: Tue Jul 06, 2004 8:21 am
Help me Please
comboBox4.items are
{dTopBottom,gdBottomTop,gdLeftRight,gdRightLeft,gdFromCenter,gdFromTopLeft,gdFromBottomLeft}
in VB6,work fine following code
TChart1.Series(0).asWindRose.CircleGradient.Direction = Combo4.ListIndex
in VB.NET,followings makes error
private void comboBox4_SelectedIndexChanged(object sender, System.EventArgs e)
{
axTChart1.Series(0).asWindRose.CircleGradient.Direction=comboBox4.SelectedIndex;
}
Thank you in advance
comboBox4.items are
{dTopBottom,gdBottomTop,gdLeftRight,gdRightLeft,gdFromCenter,gdFromTopLeft,gdFromBottomLeft}
in VB6,work fine following code
TChart1.Series(0).asWindRose.CircleGradient.Direction = Combo4.ListIndex
in VB.NET,followings makes error
private void comboBox4_SelectedIndexChanged(object sender, System.EventArgs e)
{
axTChart1.Series(0).asWindRose.CircleGradient.Direction=comboBox4.SelectedIndex;
}
Thank you in advance