mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* [FIX] make amcharts definitions work in strict mode * [FIX] travis checks header * clean some linting issues, export namespace, add version and provide small test * [FIX] linting * [MOD] split into several files for easier maintenance access * [ADD] couple of tests
24 lines
797 B
TypeScript
24 lines
797 B
TypeScript
import AmLegend from "./AmLegend";
|
|
|
|
/**
|
|
* StockLegend is a legend of StockPanel.
|
|
*/
|
|
export default class StockLegend extends AmLegend {
|
|
/**
|
|
* The text which will be displayed in the value portion of the legend when graph is comparable and
|
|
* at least one dataSet is selected for comparing.
|
|
* You can use tags like
|
|
* [[value]], [[open]], [[high]], [[low]], [[close]], [[percents.value/open/close/low/high]],
|
|
* [[description]]
|
|
* @default [[percents.value]]%
|
|
*/
|
|
valueTextComparing: string;
|
|
/**
|
|
* The text which will be displayed in the value portion of the legend.
|
|
* You can use tags like
|
|
* [[value]], [[open]], [[high]], [[low]], [[close]],[[percents]], [[description]]
|
|
* @default [[value]]
|
|
*/
|
|
valueTextRegular: string;
|
|
}
|