I am using OWC 11 in my new web application for displaying charts.
Is it possible in OWC 11 to combine and display a column and a line graph (Looking like they overlap each other)?
I tried it using this code but it doesn' t work.

Code:
int width = 400;
int height = 300;

Bitmap bmpChart = new Bitmap(width, height, PixelFormat.Format16bppRgb555);
			
OWC11.ChartSpace chSpace
...