Hi Graham,
I'm having a look at igPieChart and I also wish to remove the border around the chart and its legend.
A brief explanation of my CSS architecture: my page uses bootstrap, as it is inside an ASP.NET MVC 4.5.1 project. I used themeroller to download Redmond theme and I added the dowloaded files to themes folder. Then, since charts are not covered by jQuery UI, I added an additional css that merges chart style settings from the two IG files: 'structure\modules\infragistics.ui.chart.css' and 'themes\infragistics\infragistics.theme.css'.
These are CSS files that I reference from my page:
<link href="@Url.Content("~/Content/themes/redmond/jquery-ui-1.10.4.custom.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/themes/common/infragistics.ui.chart.css")" rel="stylesheet" type="text/css" />
To make the border disappear, I added this setting to 'infragistics.ui.chart.css' file:
.ui-widget-content {
border:0px;
}
Simply setting '.ui-chart-container' as you suggested didn't work.
Am I doing something wrong with CSS files or around?
Thank you, bye. Maria