Salome HOME
Merge from agy/feedbackads140304
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / C6.py
1 # Copyright (C) 2010-2014  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 paravis
26 import pvsimple
27
28
29 # 1. Import tables from file
30 file_path = tablesdir + "tables_test.xls"
31 table_reader = pvsimple.TableReader(FileName=file_path)
32 if table_reader is None:
33     print "FAILED to import tables from tables_test.xls file."
34
35 # 2. Create curves viewer
36 cur_view = pvsimple.GetRenderView()
37 if cur_view:
38     pvsimple.Delete(cur_view)
39 xy_view = pvsimple.CreateXYPlotView()
40
41 # 3. Display curves in the viewer
42 table_reader.TableNumber = 1
43 xy_rep = pvsimple.Show(table_reader)
44 xy_rep.AttributeType = 'Row Data'
45 xy_rep.UseIndexForXAxis = 0
46 xy_rep.XArrayName = 'toto 1 [s]'
47 xy_rep.SeriesVisibility = [xy_rep.XArrayName, '0']
48 xy_rep.SeriesVisibility = ['vtkOriginalIndices', '0']
49 pvsimple.Render(xy_view)
50