Grafana - set first column as header - scroll

I'm trying to set first column as header in Grafana. It should work as in Excel or Numer that I block first column and when I scroll right that column goes with me. Just normal header. Could you point me to right direction? I can't find proper option in Graphana panel. I use table in Grafana.
Thx!

Related

Spotfire DropDown list to filter entire page?

I have been desperately trying to figure out how to take a column, customer name, and be able make a drop down list that filters the entire pages visualizations so that when you have a specif customer selected it filters everything.
I think I'm going down the right path my creating a property type string and setting it to unique values in that customer name column, but cant seem to figure out what to do next. Even if i have to set it individually for each visualization that would be fine, but i cant seem to get this to work.
Can someone help me figure this out?
I'm on spotfire 7.0 if that matters. Thanks
Thank you in advance.
#TPLEE - In order to apply filter to the visualization from the selected drop down, you have to insert the below case statement in 'Limit data using expression' section of the visualization properties as shown below.
Right click on the visualization and go to properties.
Click on edit as shown in the picture and insert the below case
statement and click 'Ok'.
Note: 'YourCOLUMNName' will be your column name from the data table that you are using and ${CustomerName} is your property control name
case
when "${CustomerName}"=[YourCOLUMNName] then true
when "${CustomerName}"="" then true
else false end

How to change column attributes on Oracle APEX?

In the picture, it shows my problem: I need to display the values of a column from a table in apex. Currently all the values are being displayed as a text field. But, I need to display only a few as text fields and others as just a display value without allowing someone to edit it. I've been looking into it, but I'm stuck.. There is a conditional display area, but not sure if that is where I need to go for the solution. That section seems to just limit what values get displayed not change the display format based on the values, but that latter is what i need. Thanks if you know or can point me in the right direction!
In the Item properties , go to advanced section
in custom attributes mention readonly=’readonly’-- this will make that item as display only.

How to show the top 10 column values in Spotfire

I need to show top 10 values using Spotfire. I googled lot but I could not find the best solution.
I followed this tutorial: Creating a Dynamic Top Ten Chart but did not find success.
How can I do this?
How to limit a visualization by the top 10 values:
There are 2 ways you could do this. I will list them both with pros/cons.
Method 1 - Visualization Level
Open your visualization's properties and go to the Data tab.
Select "Edit..." under "Limit data using expression:" and include the following expression: Rank([values],"desc")<11 where [values] is the numeric column you want the top 10 of.
Example below. Note all of the filters are untouched on the right.
Method 2 - Analysis Level
Insert a calculated column with the following expression: Rank([values],"desc").
Use the built in filters to only include Rank 1-10 for the top 10. This will filter all of your visualizations in your given filtering scheme to just the top 10.
Example below. Note the RANK filter on the right and how I have it narrowed down to a max of 10.
Let me know if you are still having issues.
Edit: Right click and open image in a new tab if you are having trouble seeing the content of my screenshots. The source imgur link should have the larger resolution viewable.
Within the Properties > Show/Hide Items, you can add a rule to show only the top 5 or 10 items by the Value Axis.
To do a Top 10 Report in Tableau.
Approach 1:(Query level)
Using custom sql : Edit your custom sql to something like this.
select top 10 * from table order by Id desc
Approach 2:(Report level)
Using Index
1.Create a calculated field. `Index()`
2.Change it to discrete.
3.Drag it to column shelves(It should be the first column)
4.Change it to continuous drag it to filters shelves and select `1-10`
https://googletpoint.wordpress.com/2015/04/24/how-to-show-top-10-values-in-spotfire-6-5-2/
Check the above link.. It will be helpful

How to insert title for Rows of Cross Tab in Birt Tool

i am very new to Birt Tool,
my Question is,
I Did Row spaning in Cross tab by using different rows, now i want to insert heading for each row,
Could anyone help me
The reason this never got an answer is that Eclipse has not yet provided this long-awaited and much requested feature: https://bugs.eclipse.org/bugs/show_bug.cgi?id=261995
Several work-arounds though. If you've found something that works well, let us all know.
one workaround which i use is add a grid on top of the rows with same number of columns as in the crosstab and 1 row .
Now you can add labels in the grid for static headers
If you want dynamic headers you can choose the data from the pellete

How do I change the orientation of a table in a BIRT report

I need to change the orientation of a table in a BIRT report so that the table header is vertical instead of horizontal.
Is this possible? I don't want to use a Crosstab.
It seems this thread is still being pointed at so I posted an example of a horizontal table layout using a crosstab. I know it won't help the original author but others following this thread now may find this helpful.
To create the horizontal grouping, first create your query like normal, then create a Data Cube. In this data cube, drag each field that you want into a group. Then drag a new crosstab on the report and drag each field into the top right column group area. It will create a new header row for each field. Don't put anything in the left side (Rows) and don't put anything in the measure field (bottom-right). This will create labels on the left... and the data will extend out to the right.
The report design example can be downloaded from: http://developer.actuate.com/community/forum/index.php?/files/file/1079-horizontal-table-using-crosstab/
Virgil
If you want dataset records to be reported across the page, this would have to be done via a crosstab.
If you want dataset records to be reported down the page, this can't be done automatically as far as I know. However, it can be done by inserting a new detail line in your report table object for each database field to be reported, then moving column headings from the heading row into the first column's detail rows and moving record values into the second column's detail rows.
So, for example, a report with 6 columns in it would become a two column report with six detail rows.
Not in box (up to 3.7). You have to use 3'd party libs like that one.

Resources