--- a/OSSEval/analysis/views.py
+++ b/OSSEval/analysis/views.py
@@ -82,7 +82,7 @@
         return render(request, 'analysis/analysis_edit.html', {'form': form, 'analysis': analysis})
 
 class AnalysisList(ListView):
-    queryset = Analysis.objects.order_by('-created') 
+    queryset = Analysis.objects.filter(visible=True).order_by('-created') 
     context_object_name = 'analises_list'
     
 def detail(request, analysis_id):
@@ -99,8 +99,8 @@
 def weight_scenario_graph(request, methodology_version_id):
     mv = get_object_or_404(MethodologyVersion, pk=methodology_version_id)
     weight_scenarios = mv.weightscenario_set.all()
-    bar_chart = Bar()
-    bar_chart.title = mv.methodology.name + ' scenario comparison'
+    bar_chart = Bar(x_label_rotation=20)
+    bar_chart.title = mv.methodology.name + ' weight scenario comparison'
     bar_chart.x_labels = []
     for ws in weight_scenarios:
         ws.weights_for_graph = []
@@ -273,7 +273,7 @@
                 methodology_on_file.name = methodology_xml[0].attributes["Name"].firstChild.data
 
                 analysis_on_file.methodology_version = methodology_version_on_file
-                import_choice_form = ImportChoice(initial={'uploaded_file_id': new_uploaded_file.id, 'new_uploaded_file_relpath': new_uploaded_file.docfile.url}) # An unbound form
+                import_choice_form = ImportChoice(initial={'uploaded_file_id': new_uploaded_file.id, 'new_uploaded_file_relpath': new_uploaded_file.docfile.url, 'how_to_import': 0}) # An unbound form
                 return render(request, 'analysis/import_file.html', {'prettyxml': xmldoc.toprettyxml(indent="    "),'file': request.FILES['file'], 'analysis_on_file': analysis_on_file, 'analysis_on_db': analysis_on_db, 'new_uploaded_file': new_uploaded_file, 'import_choice_form': import_choice_form})
             except Exception as ex:
                 message = 'Error parsing uploaded file: ' + str(ex)