class anychart.core.ui.StageCredits Improve this Doc
Define class Credits.
Note: Use anychart.ui#credits method to create instance of this class.
Note: You can't customize credits without a license key. See AnyChart Licensing to learn more.
Methods Overview
Specific settings | |
alt() | Alternative text for credits. |
imgAlt() | Image alternative text. |
logoSrc() | Logo source for credits. |
text() | Text for credits. |
url() | URL address for credits. |
Interactivity | |
enabled() | Credits state (enabled or disabled). |
Methods Description
alt
Getter for credits alternative text.
Returns:
string - Credits alternative text. See listing
var credits = stage.credits(); var creditsAlt = credits.alt();
Setter for credits alternative text.
Detailed description
Note: You can't customize credits without a license key. See AnyChart Licensing to learn more.
Params:
Name | Type | Description |
---|---|---|
text | string | Alternative value. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it:
enabled
Getter for the sateg credits state.
Returns:
boolean | null - Credits state. See listing
var credits = stage.credits(); var state = credits.enabled();
Setter for the stage credits state.
Params:
Name | Type | Description |
---|---|---|
enabled | boolean | Enabled state to set. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it:
imgAlt
Getter for the image alternative text.
Returns:
string - Image alternative text. See listing
var imgAlt = credits.imgAlt();
Setter for the image alternative text.
Params:
Name | Type | Description |
---|---|---|
alt | string | Alternative text. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it:
logoSrc
Getter for credits logo source.
Returns:
string - Credits logo source. See listing
var credits = stage.credits(); var creditsLogoSrc = credits.logoSrc();
Setter for credits logo source.
Note: Note: You can't customize credits without a license key. See AnyChart Licensing to learn more.
Note: Note: You can't customize credits without a license key. See AnyChart Licensing to learn more.
Params:
Name | Type | Description |
---|---|---|
logoSrc | string | Logo source value. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it:
text
Setter for credits text value.
Detailed description
Note: You can't customize credits without a license key. See AnyChart Licensing to learn more.
Params:
Name | Type | Description |
---|---|---|
text | string | Text value. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it:
url
Getter for credits URL address.
Returns:
string - Credits URL address. See listing
var credits = stage.credits(); var creditsUrl = credits.url();
Setter for credits URL.
Detailed description
Note: You can't customize credits without a license key. See AnyChart Licensing to learn more.
Params:
Name | Type | Description |
---|---|---|
url | string | URL value. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it: