hi - i have a composite chart and i would like to remove the border around it. currently, it is displaying the chart and its data fine - it has solid black lines around the chart.
i have tried the following:
ultraChart1.BorderStyle = BorderStyle.None;ultraChart1.Border.Color = Color.White;ultraChart1.Border.Thickness = 0;
none of these have had any effect to the appearance of the border... any help would be appreciated.
thank you
fixed the issue with:
myColumnLayer.ChartArea.Border.Thickness = 0;