All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.jetbrains.datalore.vis.svg.SvgContainer.kt Maven / Gradle / Ivy

/*
 * Copyright (c) 2019. JetBrains s.r.o.
 * Use of this source code is governed by the MIT license that can be found in the LICENSE file.
 */

package jetbrains.datalore.vis.svg

import jetbrains.datalore.base.observable.property.Property

interface SvgContainer {

    fun opacity(): Property
    fun clipPath(): Property

    companion object {
        val OPACITY: SvgAttributeSpec =
            SvgAttributeSpec.createSpec("opacity")
        val CLIP_PATH: SvgAttributeSpec =
            SvgAttributeSpec.createSpec("clip-path")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy