Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/hive/templates/box_instance_monitor.html
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/hive/templates/box_instance_monitor.html	(revision 38795)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/hive/templates/box_instance_monitor.html	(working copy)
@@ -46,7 +46,7 @@
                                         {% for group_name, field_group in CURRENT_MODEL._meta.field_groups.iteritems() %}
                                             {% if field_group.isstats %}
                                                 {% for field in field_group.fields if field.type_name == 'StorableField' %}
-                                                <li data-fieldname="{{field.name}}" class="{% if loop.index == 1 %}active{% endif %}">
+                                                <li data-fieldname="{{field.name}}" data-verbosename="{{field.verbose_name}}" class="{% if loop.index == 1 %}active{% endif %}">
                                                     <a class="field_name" style="color:#333;text-align:left;">{{field.verbose_name}}</a>
                                                     <!--<img src="{{ MEDIA }}img/chart-placeholder.png" style="width:100px;"/> -->
                                                     {# {% if SESSION.theme == 'default' %}
@@ -79,6 +79,7 @@
                             $("#box_tabs_{{ID}}").find("li").each(function(){
                                 $(this).click(function(){
                                     change_chart(js_hook_{{ID}}, $(this).data("fieldname"), this);
+                                    $('.filter-option').html($(this).data("verbosename"));
                                 });
                             });
                             for (first in js_hook_{{ID}}.statistics_fields) break;
Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/media/js/coffee/widget-statistics.coffee
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/media/js/coffee/widget-statistics.coffee	(revision 38795)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/media/js/coffee/widget-statistics.coffee	(working copy)
@@ -5,8 +5,9 @@
     else
       value.show()
   if ele
-    $(ele).parent().find('.active').removeClass('active')
+    $(ele).parent().find('.active').removeClass('active').css('background', '#fff')
     $(ele).addClass('active')
+    $(ele).css('background', '#ccc')
 
 clear_data = (js_hook, field_name, ele) ->
   $.each js_hook.statistics_fields, (key, value) ->
