Hello,
I want to change the menu order from it default displaying
From the Order
- Discover
- Visualize
- Dashboard
- Management
To the Order of
- Visualize
- Management
- Dashboard
- Discover
Is there any way to rearrange that?
Thanks.
Hello,
I want to change the menu order from it default displaying
From the Order
To the Order of
Is there any way to rearrange that?
Thanks.
There currently isn't a way to do this in Kibana.
It would be very hacky, but you might be able to accomplish what you want by writing a hack (appropriate name) plugin for Kibana.
Here's an excellent resource for getting started writing a Kibana plugin:
https://github.com/elastic/generator-kibana-plugin.
Then you could re-order the tabs with something like this:
/public/hack.js
import $ from 'jquery';
$(() => {
const $appSwitcher = $('app-switcher');
function moveTab(tabLabel) {
$appSwitcher.find(`.global-nav-link:contains('${tabLabel}')`).appendTo($appSwitcher);
}
['Visualize', 'Management', 'Dashboard', 'Discover'].forEach((label) => moveTab(label));
});
Again, this is extremely fragile, but depending on your needs may work.
Hello,
Thanks. I did it via some other way work around....
Thanks a lot...
Hey, can you please share the work around?
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.