Change Color, move and bold text in header table on Qlik Sense - qliksense

I'm trying to change text color from table, move the text to center and put it bold text from a table or a graph in qlik sense, like in the following image:
That can be done without extensions? What is the alternative? any tutorial? Thanks!

This is not possible at the moment for the title, at least by using your run-of-the-mill edit mode.
If you have css knowledge, you can make a theme that applies your wanted format onto the title.

Related

Default Colour on Radio Buttons

I am putting together a simple form for a friend and they want when a button is selected to change from amber, too green.
I have attached PDF to give an idea of what I am looking for. Much like a data validation on excel, but for the life of me I cannot figure out how to do it.
Default: Amber
when clicked: Green
It is certainly possible with PDFs to do that since the appearance of a form field is defined by arbitrary drawing instructions.
However, whether you can do that with a PDF editor wholely depends on the capabilities of the PDF editor.

Jface / swt Label that can scroll

First of all thanks for all the previous advice.
I have come across a rather tricky little problem.
I have a string which I want to display into a Label, normally no problem, but the string is longer than the label will allow. However the similar problem with the text box was resolved with the use of the swt awt hybrid. What I would like to do is replicate this with the label.
Is there way around this? or would the workaround be to have the text area to settext to desired text and then to set the text enable to false so it is grey text.
Could anybody advise?
Your workaround to use Text is perfectly fine. You can mimic label behavior by setting appropriate background color and font and disable it. Also such "labels" are able to provide copy functionality, which is not possible for usual Labels.
Another workaround would be to calculate bounds of your String by using FontMetrics and then cut the string in the end with "..." and providing a tooltip with a full Sting length.
It is also possible to use SWT.WRAP constant for labels, thou it will be still restricted by the width of the Label.

Gwt, how to make "Rich Text Area" to accept only a few features such as Bold Italic & remove all others?

Let say, when u create a new post in stackoverflow, then u can only set old, & some very simple Html tags.
The "Rich Text Area" in Gwt has too many features that I don't need. i just need Bold, italic, Underline & hyperlink. So How to customize the "Rich Text Area" so that it only accepts some limioted of features.
Also, when user put any formatted text from internet into the "Rich Text Area", it will clear all the formats but keep Bold, italic, Underline & Hyperlink.
The other solution is to make Text Area to work like RichText Area??
So, do u have any idea how to do it?
There isn't a method where you can go richTextAreaToolbar.setActiveBlagh(false), which honestly would be amazing.
Since GWT uses a default RichTextToolbar, you need a custom RichTextToolbar.
Code
Use the code from there, but remove all the unnecessary functionality like color/images/etc.
You could even add your own if you so wish.
It will take a while, but being able to customize your own widgets is so much more satisfying.
EDIT:
Here is another link to give you advice on how to set it all up: Custom RichTextToolbar

Table border style lost after uploaded on Gdoc

We are now working on upload word document on Google Docs by .NET. We have an template which contains tables, we set border style of tables to none, then all the borders are invisible. But after we uploaded it on Google Docs, the borders appears in black. We tried upload the template to Google Docs manually, the borders appear too. So I think our code is correct, does the Google Docs API allow us to change the style of table border after convert .docx to Google Doc? Or any solution to keep the borders invisible?
I've tried to make the table border to white (the paper color), then the borders is hidden while I upload it to Google Docs without conversion. But while I try to edit it, the table border appears again. I guess that's because Google viewer convert the .docx to GDoc while I try to edit the .docx document.
I've tried to set table border to none in Word, but the borders still appears after conversion. Is this a bug of Google document conversion? It should set the border to zero while the table border was set to none in Word, but it doesn't do that. Is there anybody can help me on this issue? Many thanks.
To answer your first question, there is no way of modifying the document content after uploading. You may, however find better fidelity by converting to HTML or PDF and uploading those formats.
Otherwise, you should raise a bug report on the issue tracker, so that the conversion can be improved.
This is not an answer to your problem, but it's a work around that I'm using currently, by setting the border colour to white it no longer displays the black borders.

Make pdf reader like functionality in my app (highlight the content)

I need a functionality like in the iphone pdf reader.
i want that user select some text content and that content should be highlighted with yellow color.
Currently i am using text view and want to know that can i achieve same functionality in it.
or i have to shift to pdf ?
Please tell that how to achieve that in either of the two.
You can try NSAttributedString-Additions-for-HTML
Take a look at EGOTextView
A drop-in replacement for UITextView that amongst other things supports attributed strings. This would allow you to achieve your aim of selecting text, and then applying a style to that selection such as a yellow highlight.