Salome HOME
Merge branch 'V7_dev'
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / C6.py
1 # Copyright (C) 2010-2016  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This case corresponds to: /visu/SWIG_scripts/C6 case
21 # Import a table from file and show it in 2D viewer
22
23 from paravistest import tablesdir
24 from presentations import *
25 import pvsimple
26
27 # 1. Import tables from file
28 file_path = tablesdir + "tables_test.xls"
29 table_reader = pvsimple.CSVReader(FileName=file_path)
30 if table_reader is None:
31     print "FAILED to import tables from tables_test.xls file."
32
33 # 2. Create curves viewer
34 cur_view = pvsimple.GetRenderView()
35 if cur_view:
36     pvsimple.Delete(cur_view)
37 xy_view = pvsimple.CreateXYPlotView()
38
39 # 3. Display curves in the viewer
40 xy_rep = pvsimple.Show(table_reader)
41 xy_rep.AttributeType = 'Row Data'
42 xy_rep.UseIndexForXAxis = 0
43 xy_rep.XArrayName = 'toto 1 [s]'
44 xy_rep.SeriesVisibility = [xy_rep.XArrayName, '0']
45 xy_rep.SeriesVisibility = ['vtkOriginalIndices', '0']
46 pvsimple.Render(xy_view)