Hi,
Is it possible to display the series in the Column3D chart like the following figure. Could you please show me the sample on How?
use a regular (2D) ColumnChart, and add a ThreeDEffect to the Effects collection.
By adding ThreeDEffect to the Effects collection to ColumnChart and resizing column size using following code; I get ThreeD Effect extended to original width of column charts; can we apply ThreeD Effect at run tiime?
const int columnWidth = 25;
Box box = e.Primitive as Box;
if (box == null) return;
if (box.DataPoint == null) return;
int dWidth = box.rect.Width - columnWidth;
if (dWidth <= 0) return;
box.rect.Width = columnWidth;
box.rect.X += dWidth / 2;