neu-charts
Version:
neu-charts is a ngx-charts wrapper and charting framework for Angular 2 and beyond!.
11 lines (10 loc) • 419 B
TypeScript
import { BarOptions } from "./bar-options";
/**
* Bar line combo chart component
* @author Prasanth Venkatesan
*/
export declare class BarLineComboOptions extends BarOptions {
showRightYAxisLabel: boolean;
yAxisLabelRight: string;
constructor(showLegend?: boolean, showXAxis?: boolean, showYAxis?: boolean, showXAxisLabel?: boolean, showYAxisLabel?: boolean, xAxisLabel?: string, yAxisLabel?: string);
}