Hello, I hope I can get some help for this.
I am using managed c++
I am trying to update XScale and YScale at runtime, but when I try to update ChartArea->View I get this warning:
warning C4277: imported item 'C1::Win::C1Chart3D::j::a' exists as both data member and function member; data member ignored
and then a fatal error.
Is this because I'm using managed c++?
This is the exact line of code that causes the error:
c1Chart3D1->ChartArea->ChartArea->View->XScale = Convert::ToSingle(numericUpDown1->Value);
c1Chart3D1 being a 3D chart I dropped into a winform and numericUpDown1 being another form that takes a value from the user.
I would appreciate any help I could get. Thank you