Upgraded form 8.2 to 9.2 sr1
now getting an error on an ultrachart..
Line 258: <td style="width: 100%; height: 100%" colspan="3"> Line 259: Line 260: <igchart:UltraChart ID="BarChartStatus" runat="server" BackgroundImageFileName="" Line 261: BorderColor="Black" BorderWidth="1px" Line 262: EmptyChartText="Data Not Available."
Source File: /Dashboard.aspx Line: 260
A bug in the chart?
I am upgrading from 8.3 to 9.2 and just had the same problem. It also kept the control from showing in the designer. I solved it by going into the page markup and removing the BorderColor and BorderWidth (which has the same issue) attributes from the igchart:UltraChart tag.
I never set these directly. It looks like these have gone from attributes of the grid tag to attributes of a new border tag. You can see this if you set the color to something other than black.
<Border Color="Bisque" />
Hope this helps.
So your aspx page doesn't set BorderColor explicitly on the chart, but the source error message says otherwise? Can you post the contents of your aspx page?
That is the only way I am setting the property.
Sorry about the delayed response. BorderColor is a non-browsable property and isn't meant to be used directly. I think this was also the case with 8.2. Are you able to set border color through that chart's Border.Color property?