2016-07-20 12:25:51 +02:00
|
|
|
/**
|
|
|
|
* File: plot-table.js
|
|
|
|
* Author: Markus Grigull <mgrigull@eonerc.rwth-aachen.de>
|
|
|
|
* Date: 05.07.2016
|
|
|
|
* Copyright: 2016, Institute for Automation of Complex Power Systems, EONERC
|
|
|
|
* This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential.
|
|
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
|
|
**********************************************************************************/
|
|
|
|
|
2016-07-17 18:43:08 +02:00
|
|
|
import PlotAbstract from './plot-abstract';
|
2016-06-28 14:23:49 +02:00
|
|
|
|
2016-07-17 18:43:08 +02:00
|
|
|
export default PlotAbstract.extend({
|
2016-07-19 16:45:45 +02:00
|
|
|
classNames: [ 'plotTable' ],
|
2016-06-29 17:08:42 +02:00
|
|
|
|
2016-07-17 18:43:08 +02:00
|
|
|
minWidth_resize: 200,
|
|
|
|
minHeight_resize: 60
|
2016-06-28 14:23:49 +02:00
|
|
|
});
|