Skip to content

Instantly share code, notes, and snippets.

@ralfbecher
Last active January 25, 2017 16:17
Show Gist options
  • Save ralfbecher/6499383 to your computer and use it in GitHub Desktop.
Save ralfbecher/6499383 to your computer and use it in GitHub Desktop.
QlikView ColorMix function cannot be used in SVG extension color expression because it returns ARGB(), alpha is not usable for SVG path (use opacity property instead). This shows how to patch the return to RGB() code if alpha is a constant value.
// patch ARGB() to RGB():
=replace( ColorMix1( ... ) , 'ARGB(255,', 'RGB(' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment