Package | Description |
---|---|
com.yworks.yfiles.graph |
Definitions, default implementations, and support classes that represent graph structures and provide facilities for their programmatic modification.
|
com.yworks.yfiles.graph.styles |
Contains interfaces and default implementations for graph element styles.
|
Modifier and Type | Method and Description |
---|---|
IStripeStyle |
StripeDefaults.getStyle() |
IStripeStyle |
IStripeDefaults.getStyle()
Gets the style to use for stripes.
|
IStripeStyle |
IStripe.getStyle()
Gets the style for this stripe.
|
IStripeStyle |
StripeDefaults.getStyleInstance() |
IStripeStyle |
IStripeDefaults.getStyleInstance()
Factory method that returns a style instance for use with newly created stripes.
|
Modifier and Type | Method and Description |
---|---|
default IColumn |
ITable.createColumn(double width,
double minWidth,
InsetsD insets,
IStripeStyle style)
Creates and returns a column as last child of
table . |
default IColumn |
ITable.createColumn(double width,
double minWidth,
InsetsD insets,
IStripeStyle style,
Object tag)
Creates and returns a column as last child of
table . |
default IColumn |
ITable.createColumn(double width,
double minWidth,
InsetsD insets,
IStripeStyle style,
Object tag,
int index)
Creates and returns a column as last child of
table . |
default IColumn |
ITable.createColumn(IColumn owner,
double width,
double minWidth,
InsetsD insets,
IStripeStyle style)
Create a new column as the
index th child of owner with the given parameters. |
default IColumn |
ITable.createColumn(IColumn owner,
double width,
double minWidth,
InsetsD insets,
IStripeStyle style,
Object tag)
Create a new column as the
index th child of owner with the given parameters. |
IColumn |
Table.createColumn(IColumn owner,
double width,
double minWidth,
InsetsD insets,
IStripeStyle style,
Object tag,
int index) |
IColumn |
ITable.createColumn(IColumn owner,
double width,
double minWidth,
InsetsD insets,
IStripeStyle style,
Object tag,
int index)
Create a new column as the
index th child of owner with the given parameters. |
default IRow |
ITable.createRow(double height,
double minHeight,
InsetsD insets,
IStripeStyle style)
Creates and returns a row as last child of
table . |
default IRow |
ITable.createRow(double height,
double minHeight,
InsetsD insets,
IStripeStyle style,
Object tag)
Creates and returns a row as last child of
table . |
default IRow |
ITable.createRow(double height,
double minHeight,
InsetsD insets,
IStripeStyle style,
Object tag,
int index)
Creates and returns a row as last child of
table . |
default IRow |
ITable.createRow(IRow owner,
double height,
double minHeight,
InsetsD insets,
IStripeStyle style)
Create a new row as the
index th child of owner with the given parameters. |
default IRow |
ITable.createRow(IRow owner,
double height,
double minHeight,
InsetsD insets,
IStripeStyle style,
Object tag)
Create a new row as the
index th child of owner with the given parameters. |
IRow |
Table.createRow(IRow owner,
double height,
double minHeight,
InsetsD insets,
IStripeStyle style,
Object tag,
int index) |
IRow |
ITable.createRow(IRow owner,
double height,
double minHeight,
InsetsD insets,
IStripeStyle style,
Object tag,
int index)
Create a new row as the
index th child of owner with the given parameters. |
void |
Table.setStyle(IStripe stripe,
IStripeStyle style) |
void |
ITable.setStyle(IStripe stripe,
IStripeStyle style)
Sets the style of
stripe . |
void |
StripeDefaults.setStyle(IStripeStyle value) |
void |
IStripeDefaults.setStyle(IStripeStyle value)
Sets the style to use for stripes.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractStripeStyle
An abstract base class that makes it possible to easily implement a custom
IStripeStyle . |
class |
NodeStyleStripeStyleAdapter
A stripe style decorator that uses a node style instance to render the stripe.
|
class |
TemplateStripeStyle
An
IStripeStyle implementation that can render complex Node s for the visualization of IStripe s
using a TemplateStripeStyleRenderer . |
class |
VoidStripeStyle
A void implementation of a stripe style that does nothing and behaves like an invisible style.
|
Modifier and Type | Method and Description |
---|---|
ILookup |
VoidStripeStyleRenderer.getContext(IStripe stripe,
IStripeStyle style)
Yields the
ILookup.EMPTY that will not yield anything. |
ILookup |
TemplateStripeStyleRenderer.getContext(IStripe stripe,
IStripeStyle style)
Configures the
style and stripe parameters, does not call TemplateStripeStyleRenderer.configure() and returns
this . |
ILookup |
IStripeStyleRenderer.getContext(IStripe stripe,
IStripeStyle style)
Gets a temporary context instance that can be used to query additional information for the stripe's style.
|
IVisualCreator |
VoidStripeStyleRenderer.getVisualCreator(IStripe stripe,
IStripeStyle style)
Yields the
VoidVisualCreator.INSTANCE that will do nothing. |
IVisualCreator |
TemplateStripeStyleRenderer.getVisualCreator(IStripe stripe,
IStripeStyle style)
Configures the
style and stripe parameters, calls TemplateStripeStyleRenderer.configure() and returns this . |
IVisualCreator |
IStripeStyleRenderer.getVisualCreator(IStripe stripe,
IStripeStyle style)
Gets an implementation of the
IVisualCreator interface that can handle the provided stripe and its associated
style. |