Hi

A little fix to ucChartArea.ctl:

Code:
Public Property Get LegendVisible() As Boolean
    LegendVisible = m_LegendVisible
End Property

Public Property Let LegendVisible(ByVal New_Value As Boolean)
    m_LegendVisible = New_Value
    PropertyChanged "LegendVisible"
    Refresh
End Property

Public Property Get AxisXVisible() As Boolean
    AxisXVisible = m_AxisXVisible
End Property

Public Property Let AxisXVisible(ByVal New_Value As Boolean)
    m_AxisXVisible = New_Value
    PropertyChanged "AxisXVisible"
    Refresh
End Property

Public Property Get AxisYVisible() As Boolean
    AxisYVisible = m_AxisYVisible
End Property

Public Property Let AxisYVisible(ByVal New_Value As Boolean)
    m_AxisYVisible = New_Value
    PropertyChanged "AxisYVisible"
    Refresh
End Property
It has all the functions ready to work but the propierties are not public so they can't be used. With that code all works ok.