Salome HOME
enable make test
[modules/paravis.git] / test / VisuPrs / SWIG_scripts / B7.py
1 # Copyright (C) 2010-2015  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/B7 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 # Import table from CSV file
28 file_path = tablesdir + "table_test.csv"
29 table_csv = pvsimple.CSVReader(FileName=file_path)
30
31 # Set space as separator
32 table_csv.FieldDelimiterCharacters = ';'
33
34 # Display curve
35 cur_view = pvsimple.GetRenderView()
36 if cur_view:
37     pvsimple.Delete(cur_view)
38 xy_view = pvsimple.CreateXYPlotView()
39
40 xy_rep = pvsimple.Show(table_csv)
41 xy_rep.AttributeType = 'Row Data'
42 xy_rep.UseIndexForXAxis = 0
43 xy_rep.XArrayName = 'X'
44 xy_rep.SeriesVisibility = ['X', '0']
45
46 # Set view properties
47 title = xy_view.ChartTitle
48 xy_view.ChartTitle = "Change the title from python"
49 pvsimple.Render(xy_view)
50
51 axis_title = xy_view.AxisTitle
52 xy_view.AxisTitle[0] = "Y axis"
53 xy_view.AxisTitle[1] = "X axis"
54 pvsimple.Render(xy_view)
55
56 xy_view.ShowLegend = 0
57 pvsimple.Render(xy_view)
58
59 xy_view.ShowAxis = [0, 0, 0, 0]
60 pvsimple.Render(xy_view)
61 xy_view.ShowAxis = [1, 0, 0, 0]
62 pvsimple.Render(xy_view)
63 xy_view.ShowAxis[1] = 1
64 pvsimple.Render(xy_view)
65
66 # Set logarithmic scaling
67 xy_view.AxisLogScale[0] = 1
68 pvsimple.Render(xy_view)
69 xy_view.AxisLogScale[1] = 1
70 pvsimple.Render(xy_view)
71
72 # Set representation properties
73
74 # Show/hide curves
75 xy_rep.SeriesVisibility = ['Y0', '0', 'Y1', '0',
76                            'Y2', '0', 'Y3', '0']
77 pvsimple.Render(xy_view)
78 xy_rep.SeriesVisibility = ['Y0', '1']
79 pvsimple.Render(xy_view)
80 xy_rep.SeriesVisibility = ['Y1', '1']
81 pvsimple.Render(xy_view)
82 xy_rep.SeriesVisibility = ['Y2', '1']
83 pvsimple.Render(xy_view)
84
85 xy_rep.SeriesVisibility = ['Y3', '1']
86 xy_rep.SeriesVisibility = ['Y3', '0']
87 xy_rep.SeriesVisibility = ['Y3', '1']
88 pvsimple.Render(xy_view)
89
90 # Line style
91 xy_rep.SeriesLineStyle = ['Y0', '5']
92 pvsimple.Render(xy_view)
93 xy_rep.SeriesLineStyle = ['Y1', '4']
94 pvsimple.Render(xy_view)
95 xy_rep.SeriesLineStyle = ['Y2', '3']
96 pvsimple.Render(xy_view)
97 xy_rep.SeriesLineStyle = ['Y3', '2']
98 pvsimple.Render(xy_view)
99
100 # Line thickness
101 values = (2, 4, 6, 8, 10, 1)
102 for val in values:
103     xy_rep.SeriesLineThickness = ['Y3', str(val)]
104     pvsimple.Render(xy_view)
105
106 xy_rep.SeriesLineStyle = ['Y3', '0']
107 pvsimple.Render(xy_view)
108
109 # Marker type
110 xy_rep.SeriesMarkerStyle = ['Y3', '5']
111 pvsimple.Render(xy_view)
112 xy_rep.SeriesMarkerStyle = ['Y2', '4']
113 pvsimple.Render(xy_view)
114 xy_rep.SeriesMarkerStyle = ['Y1', '3']
115 pvsimple.Render(xy_view)
116 xy_rep.SeriesMarkerStyle = ['Y0', '8']
117 pvsimple.Render(xy_view)
118
119 # Marker size
120 for val in values:
121     xy_rep.SeriesLineThickness = ['Y3', str(val)]
122     pvsimple.Render(xy_view)