StyleRule

Type class

Defines a class for a CSS rule.

Can be used to dynamically add CSS to the document.

Sources

StyleRule can be used (imported) via one of the following packages.

/**
 * --------------------------------------------------------
 * Import from: "core.ts"
 * Use like: am4core.StyleRule
 * --------------------------------------------------------
 */
import * as am4core from "@amcharts/amcharts4/core";

/**
 * --------------------------------------------------------
 * Include via: <script src="core.js"></script>
 * Access items like: am4.StyleRule
 * --------------------------------------------------------
 */

Inheritance

StyleRule extends Disposer.

StyleRule is not extended by any other symbol.

Properties

selector
#

Type string

A CSS selector text.

E.g.: .myClass p

Methods

constructor(

element: ShadowRoot | null,
selector: string,
styles: object

)

#

Returns StyleRule

Constructor.

dispose()

#

Returns void

Inherited from Disposer

Disposes the object.

isDisposed()

#

Returns boolean

Inherited from Disposer

Checks if object is disposed.

setStyle(

name: string,
value: string

)

#

Returns void

Sets a value for specific style attribute.

There are 2 inherited items currently hidden from this list.

Events

StyleRule does not have any events.

Adapters

StyleRule does not have any adapters.