Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
305
How to make a stack bar transparent?
posted
Hello, i wanted to use a stack chart to implement a special diagram. To solve the problem, i need to show the first bar of each stack transparent (as a kind of placeholder) . But all i do it is shown in a range from white to black.
MyUltraChart.ColorModel.AlphaLevel = 255
MyUltraChart.ColorModel.Grayscale = False
MyUltraChart.ColorModel.CustomPalette = New Drawing.Color() {Drawing.Color.Transparent, ColorPrimary, ColorSecondary, ColorThird}
MyUltraChart.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear


Why does it ignore Color.Transparent and White in CustomPalette?
And how can i hide the bar borders?

Thank you very much!
Holger
Parents
No Data
Reply
  • 305
    posted
    I can disable the gradient effect by . Now i can use transparency. Only question i look for is how i can disable borders for special bars of a stack chart...
Children