We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For a common enum in swift3, I can print its name using following code.
enum definition
public enum Foo : Int { case F1 }
following code will get F1 in console
F1
print(Foo.F1)
But when I try to print enums defined in Charts
I can only get HorizontalAlignment in console, which center is expected.
HorizontalAlignment
center
print(Legend.HorizontalAlignment.center)
get Form in console, which circle is expected.
Form
circle
print(Legend.Form.circle)
Why is that?
The text was updated successfully, but these errors were encountered:
I see @objc
Sorry, something went wrong.
No branches or pull requests
For a common enum in swift3, I can print its name using following code.
enum definition
following code will get
F1
in consoleBut when I try to print enums defined in Charts
I can only get
HorizontalAlignment
in console, whichcenter
is expected.get
Form
in console, whichcircle
is expected.Why is that?
The text was updated successfully, but these errors were encountered: