Group: Forum Members
Last Active: 15 Years Ago
Posts: 15,
Visits: 1
|
Hi,
I have the following code:- Dim NStandardScaleConfigurator As NStandardScaleConfigurator = TryCast(Me.m_Chart.Axis(type:=StandardAxis.PrimaryY).ScaleConfigurator, NStandardScaleConfigurator) Dim NScaleStripStyle As NScaleStripStyle = New NScaleStripStyle(fillstyle:=New NColorFillStyle(Drawing.Color.Moccasin), strokestyle:=Nothing, infinite:=True, begin:=0, end:=0, interval:=1, length:=1)
NScaleStripStyle.Interlaced = True NScaleStripStyle.SetShowAtWall(wall:=ChartWallType.Back, show:=True) NScaleStripStyle.SetShowAtWall(wall:=ChartWallType.Left, show:=True)
NStandardScaleConfigurator.StripStyles.Add(value:=NScaleStripStyle)
Works as expected for all 2d bar charts.
Does not work for the 3d bar chart. It only interlaces the left wall, and not the back wall.
Please advise how to get around this issue.
Thank you!
|