import { Form } from '../../e2elib/lib/src/pageobjects/form.component';
|
import { ChartSOP } from '../../libappsop/chartsop';
|
|
/**
|
* Currency exchange rate chart form.
|
*/
|
export class FormCurrencyRateChart extends Form {
|
public chartCurrencyRate = new ChartSOP('DashboardChartCurrencyRates');
|
|
public constructor() {
|
super('FormCurrencyRatesChart');
|
}
|
}
|
|
export enum ChartCurrencyRates {
|
LegendGroupName = 'Currency',
|
}
|