C# calling Border.Weight Bug

L

Liam Ponder

Results in error, only works by calling Border.set_Weight

Doesn't seem to be a property set up for Weight.


-Also previous bug reported about dash style. It works
when you set the weight. Go figure.
 
T

Thao Moua [ms]

I can't explain to you why this doesn't work in C#, but
here's the code to fix your problems.

objHost.Border.set_Weight
(LineWeightEnum.owcLineWeightThick );
objHost.Border.DashStyle=
(ChartLineDashStyleEnum.chLineDash);

Thao Moua
OWC Webchart Support

This posting is provided "AS IS" with no warranties, and
confers no rights. Use of included script samples are
subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
 
Top