We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following two plots have been set to use the Darcula theme:
However, There is still spacing and a border in white. This cannot currently be solved as SubPlotsFeature does not support themeing.
Code:
// Subplot 1 val freq = letsPlot(mapOf( "frequency" to fftData.indices, "gain (dB)" to fftData.map(Complex::length), )) + geomLine() { x = "frequency" y = "gain (dB)" } + scaleXLog10() + scaleYLog10() // Subplot 2 val phase = letsPlot(mapOf( "frequency" to fftData.indices, "phase (rad)" to fftData.map(Complex::angle), )) + geomLine { x = "frequency" y = "phase (rad)" } + scaleXLog10() // Parent plot val grid = gggrid( plots=listOf(freq, phase).map { it + flavorDarcula() }, // Apply theme ncol = 1, ) // + flavorDarcula() // Unsupported grid.show()
The text was updated successfully, but these errors were encountered:
Fixed in v4.5.0: Common Theme for Subplots. However, inheritance works other way around: elements inherit theme of their container.
Sorry, something went wrong.
alshan
No branches or pull requests
The following two plots have been set to use the Darcula theme:

However, There is still spacing and a border in white. This cannot currently be solved as SubPlotsFeature does not support themeing.
Code:
The text was updated successfully, but these errors were encountered: