Title dashboard panel in KIBANA 6.2.3

plz, i want to change the title font size and color for a chart in Kibana dashboard version 6.2.3 ?

I want the title to be in the middle, I tried to modify the CSS classes in the file "index.less" but it does not work.

here is my figure :

i want that :
title%20middle

so how i can do that automatic :
how%20add%20align%3D%22center%22%20in%20kibana%20%3F

Thank you

By adding these css styles to the class .panel-title in src/core_plugins/kibana/public/dashboard/styles/index.less should work.

.panel-title {
text-align: center;
color: red;
font-size: 18px;
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.