Skip to content

Commit

Permalink
Change chart selection to use type.title, closes #379
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Sep 24, 2014
1 parent fffe7a3 commit 477dd1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/kibana/apps/visualize/wizard/step_2.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>
ng-repeat="type in visTypes"
ng-href="{{ visTypeUrl(type) }}">
<li>
<i ng-class="type.icon"></i>{{type.name}}
<i ng-class="type.icon"></i>{{type.title}}
</li>
</a>
</ul>
1 change: 1 addition & 0 deletions src/kibana/components/vis_types/histogram.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ define(function (require) {

return new VisType({
name: 'histogram',
title: 'Vertical bar chart',
icon: 'icon-chart-bar',
vislibParams: {
shareYAxis: true,
Expand Down
1 change: 1 addition & 0 deletions src/kibana/components/vis_types/line.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ define(function (require) {

return new VisType({
name: 'line',
title: 'Line chart',
icon: 'icon-chart-bar',
vislibParams: {
shareYAxis: true,
Expand Down
1 change: 1 addition & 0 deletions src/kibana/components/vis_types/pie.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ define(function (require) {

return new VisType({
name: 'pie',
title: 'Pie chart',
icon: 'icon-chart-bar',
vislibParams: {
addTooltip: true,
Expand Down

0 comments on commit 477dd1e

Please sign in to comment.