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?
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?
That is the only way I am setting the property.
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?
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.
What about BorderWidth? What happened to it? I don't see it as an attribute under border either.
Just to spell it out, as this isn't overly clear:
Find you ultrachart of ultragrid.
Look for the BorderColor, BorderWidth...offending code.Between the <igchart:UltraChart><CONTENT></igchart:UltraChart> , where I've put <CONTENT> add one of these.
<Border Color="White" Thickness="0" DrawStyle="Solid" />
Quite easy, but damned time consuming if you've got pages of Charts and Grids to fix.
Annoying that Infragistics Upgrade didn't do that for us.
I found the solution was to remove all the references to border width, height, etc in the ultra chart.
I don't know if it is a bug in the ultrachart IDE itself or what. But this does happen occasionaly. WHere it will be fine then come up with these errorr. I can't seem to make it happen. It is just something to be aware of. So remove the references in the aspx code, set them in the visual designer or on the property page.
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: The 'BorderWidth' property cannot be set declaratively.Source Error:
Line 99: <td align="center" width="450"> Line 100: <!-- UltraChart1 --> Line 101: <igchart:UltraChart ID="UltraChart1" runat="server" Width="430px" Line 102: Height="250px" BorderStyle="None" BorderWidth="0px" BackgroundImageFileName="" Line 103: BorderColor="Black"
Source File: Line: 101
It only occurs in certain condition i i removed all the borderwidth attributes from the aspx page i dont understand what is the problem can you help me out?..............
Border.Thickness is the equivalent of BorderWidth.