Chronograf set units for y axe - chronograf

I created a graph for interface statistic (in my custom dashboard), but it shows units like a numbers how I can change it to something like data rate bits/sec.
Also when I saw graphs in default dashboard view it shows different units and it looks good.
I'm using Chronograf 1.3.0

This feature is now available as of Chronograf version 1.3.8.0.
Modifying the units on your graphs can be done as follows, by version:
Chronograf 1.3.8.x
Click the caret at the top-right of a dashboard cell
Click Edit
Image of 'cell caret > Edit'
Select the Display Options tab in the resulting overlay
Edit Y Axis Controls as desired
Click the Green checkmark at the top-right to save your work
Chronograf 1.3.9.x
Click the Pencil icon at the top-right of a dashboard cell
Image of Pencil icon
Select the Options tab in the resulting overlay
Edit Y Axis Controls as desired
Click the Green checkmark at the top-right to save your work

Related

ApexChart: Allow for the display only the series item clicked on the legend

I've used the legend option so the user could select the data he wants to display on the chart.
But there's a lot of info on my chart and when it loads all the legend options are selected.
What I really want is that the chart starts with only one option(legend) select.
All I've done so far is enabled the legend option

Disable option Grid Orbeon

I am using a repeated grid, as follows:
Is it possible to disable the options in the red square, and only keep the button in the green square for users to add new items.
You could either:
Use custom CSS to hide that dropdown menu.
Set the oxf.xforms.xbl.fr.grid.repeat.appearance.*.* to minimal, and your repeated grid will look as follows:

Which kind of variable is more suitable?

I’m going to build a GUI in MATLAB. This GUI page should do my settings.
I’ve six radio buttons, Camera One to Six. Under these radio buttons I’ve three additional radio buttons, Crop Side, and then under this section I’ve a Crop Percent slider.
What I want is, I need to select camera button five, for example, and then automatically set the latest setting that I’ve done on the radio buttons in Crop Side and Slider.
For example, once I’ve select the Camera Two button and set Crop Side to ‘Left’ and Crop Percent Slider to 12.
The next time I check it, the value of Crop side and Crop percent will be set to the ‘Left’ and 12, respectively.
I don’t know which kind of variables and which syntax model would be more useful for this purpose.
Here are links to my code and figure:
https://www.4shared.com/account/home.jsp?sId=kcxzI7wiO9gxGRtq&changedir=-gDLNzzw
http://cdn.persiangig.com/download/GFJExIPKMO/Works.zip/dl
In your callback function for each button, include piece of code to save the buttons value and then load those values each time you choose a new camera, e.g. if you have click on camera 5 and then click on radiobutton for crop it could look something like this:
function radiobuttonCrop_Callback(hObject,event)
% <Here is the code you have atm>
% Add this code
load('guiSettings.mat') % Loads a .mat file containing your settings
settings.cam5.crop = get(hObject,'Value'); % Updates settings.crop to the current value
save('guiSettings.mat') % Saves the updates
end
When you click on another camera, e.g. camera 3, load the settings for camera 3 as below:
function radiobuttonCamera3_Callback(hObject,handles)
load('guiSettings.mat')
set(handles.radiobuttonCrop,'Value',settings.cam3.Crop)
set(handles.slider,'Value',settings.cam3.Slider)
and so on.
Note: guiSettings.mat is the file name containing the settings. When loading with load('guiSettings.mat') you will get the variable settings contained in the file. settings is a struct containing all cameras and all settings for the cameras.
I hope this helps.

How to customize bullet charts in Tableau

We test people and then provide analysis for managers and HR teams. I have a chart that I created in Excel which I am struggling (as a novice) to recreate in Tableau.
I started with bullet charts but the problem I had with that is that the bands were relative to the target value and I couldn't see a way to link them to variables. Also the bands don't always go from red to green. There are some attributes where the test may be looking for balance rather than an extreme (e.g. perfectionism).
Instead I went the route of stacked bar charts to show a red,yellow, green type of analysis. I have managed to create a stacked bar chart in Tableau but I can't overlay a marker to show the individual's performance. This is how my data is currently:
When I try to overlay the Score on the stacked BandLimit I get this which is not what I'm after:
What am I doing wrong? I would love to know how I could fix this but also if there are other ways I could do this (bullet chart, etc.) and any tips you might have on better ways to display the information.
Thanks.
Here's one way to get the Score onto what you've already built.
I'm assuming you're looking to add the arrow that you had in the Excel bullet chart. We can do that with a second mark. I'll go ahead and include your steps so far, just to make sure everyone's on the same page:
Place Competency on the Rows shelf.
Place SUM(Band Limit) in the Columns shelf.
Place Band in Color.
Now we'll make a new mark to get that arrow onto the viz. Place Score in the Columns shelf, after SUM(Band Limit). Right click on the Score pill and make it a dimension, but keep it continuous. Lots of things will likely change automagically, but no worries, we'll get it back under control in a minute. One important thing to note is that there are now two marks shown in the Marks Card - one for SUM(Band Limit) and one for Score.
Right click the Score axis and hit Dual Axis. Then right click the Score Axis again (which is now at the top of the view) and hit Synchronize Axis. You should now have an axis at the top and bottom of the view, and they should be aligned with one another.
Go to the SUM(Band Limit) section in the Marks card. Make sure the only thing in Color is Band, then change the mark type to Bar. You should wind up with stacked bar charts again.
Go to the Score section in the Marks card. You'll probably want all of your arrows to be the same color, so take everything out of Color. Click Color and choose black (or whatever feels right to you).
In the Score section in the Marks card, change the chart type. Then choose Shape and select an arrow for the shape to replicate the Excel chart. You can also choose Gantt Bar to have a thin black line instead of an arrow.
Right click on axes and uncheck Show Header if you don't want them there. If you opt to remove both of them, make sure you include some way to see the values, maybe with a tooltip or by creating labels for one or both marks.

Unhide objects/legends in Dashboard tableau

I have objects on the dashboards - filters and legends, I've click 'x' on some of the objects because I dont want to display them. Now I want to display them - how can I make them appear on the dashboard again? I've tried remove and add the sheet again, but doesn't bring back everything anymore.
gemmo
When editing your dashboard, select the sheet or object that you wish to manipulate. You should see a small black triangle in the top right corner of the sheet. Pressing on that triangle reveals a menu that allows you to control it's settings -- including which filters and legends are displayed.
Once you've turned on displaying a filter or legend, you can move it where you like, edit its title or format, or change it between tiled and floating to adjust its position.
To unhide Legends, Follow steps as under in the image:
Select floating and adjust Legends as per your requirement and you will get desired results.