I am using Microsoft Charting to display two series.
Is it possible to make one of the series transparent to show the series behind?
Something like the following:
http://mvc.syncfusion.com/demos/ui/chart/ChartType/AreaChart
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.
Simply define the Series color with an alpha component
chart.Series["Default"].Color = Color.FromArgb(120, 0, 155, 155);