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 for credits. |
Methods Description
alt
Getter for credits alternative text.
Returns:
string - Credits alternative text. See listing
var currentCredits = stage.credits(); var creditsAlt = currentCredits.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 |
---|---|---|
value | string | Title value. |
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 |
---|---|---|
value | 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 currentCredits = stage.credits(); var creditsLogoSrc = currentCredits.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 |
---|---|---|
value | 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 |
---|---|---|
value | string | Text value. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it:
url
Getter for credits url.
Returns:
string - Credits url. See listing
var currentCredits = stage.credits(); var creditsUrl = currentCredits.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 |
---|---|---|
value | string | Url value. |
Returns:
anychart.core.ui.StageCredits - Self instance for method chaining.Try it: