I want to create a column chart using the WPF toolkit, but I want to hide the Y axis and display the dependant value for each column below the X value.
Is this possible?? If not, what other way could be used to get this result??
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can hide the Y-axis. You should add the y-axis explicitly to the
Axesproperty of the chart and set theOpacityproperty, like this:As to the second question, you should change the
AxisLabelStyleproperty. I answered a similar question here, you can look at the code and change the ControlTemplate according to your needs.The template will look something like this, don’t forget change bindings:
Anyway if it will not still work – add your source code to your question, it can help much better.