Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Tool_Tip
Creator III
Creator III

CSS ERROR

Dear ALL

We are not getting below error while writing below css code in custom css window of "Advanced KPI" object 

Tool_Tip_0-1762920233369.png

Also we tried below code 

& .qv-inner-object {
  border: 3px solid #fff;
  border-radius: 20px;
} 

& .qv-object-advanced-kpi {
  border-radius: 25px !important;
}

& article {
  border: 0px !important;
}
We want to hide border of KPI object.

NOTE: Please suggest to use Multi KPI object as it will be removed soon 

 

 

 

Labels (1)
12 Replies
robert_mika
Master III
Master III

Are you using cloud or on premise version?

In cloud you can use the sheet property to add css.

If on premise any other extension will work

like:

https://github.com/djaskowiak/advanced-kpi

Amit_Prajapati
Creator II
Creator II

Hi @Tool_Tip  , I also tried the below one and its working fine in cloud version.

Just try with removing the = and &

Amit_Prajapati_0-1762923490110.png

 

.qv-inner-object {
  border: 3px solid #fff;
  border-radius: 20px;
} 
.qv-object-advanced-kpi {
  border-radius: 25px !important;
}

.article {
  border: 0px !important;
} 

 

Tool_Tip
Creator III
Creator III
Author

Thank you for your response.
1) We are using on-premise
2) I think issue is with on-premise then because I have tried removing =& also still there is error 

Tool_Tip_0-1762925924566.png

 

Tool_Tip
Creator III
Creator III
Author

It automatically adding "=" sign even if you removed

Tool_Tip
Creator III
Creator III
Author

Dear Robert

We are using on premises and we are using the same extension which you mentioned

Nagaraju_KCS
Specialist II
Specialist II

Try this 

.qv-object .qv-object-content {
border: 3px solid #fff;
border-radius: 20px;
}

.qv-object-advanced-kpi .qv-object-content {
border-radius: 25px !important;
}

article {
border: 0px !important;
}

Tool_Tip
Creator III
Creator III
Author

No Luck

Tool_Tip_0-1762928763078.png

 

Nagaraju_KCS
Specialist II
Specialist II

Try only below one - if it is work you can add other css 

.qv-object .qv-object-content {
border: 3px solid #fff;
border-radius: 20px;
}

This is working for me 

Tool_Tip
Creator III
Creator III
Author

how about making it transparent?
by default it is showing white color only