Last active
January 25, 2017 16:17
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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