2227 comments found.
I use the compositive_waterfall graphics like the one in the example, but I want the display below to rotate 45 degrees:
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’] }],
I’ve added like the two scripts below but not changed, maybe you have a solution
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’], Direction: -1, SlantedText: true, SlantedTextAngle: 45
}], ================================
================================= XAxis: [{ Type: ‘category’, Labels: { Rotation: -45, Style: { FontSize: ‘13px’, FontFamily: ‘Verdana, sans-serif’ } } }],
Do you have a solution?
I use the compositive_waterfall graphics like the one in the example, but I want the display below to rotate 45 degrees
================================= // Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’] }],
I ‘ve added like the scripts below but not changed, maybe you have a solution
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’], Direction: -1, SlantedText: true, SlantedTextAngle: 45 }],
Hi
This is how your code should look like:
// Horizontal axis
xAxis: [{
...
axisLabel: {
rotate: 45
}
}],
Please refer do documentation for all available options.
Thanks
I want to ask again, I use the compositive_waterfall chart and I want to rotate the numbers above the bar to 45 degrees (because if it is not in rotation crashes to the side), please help me because I am a little confused to read the documentation at http: // echarts. Baidu.com/index-en.html
Thanks
Please describe the problem better – you’ve sent me the code for horizontal axis labels.
Unfortunately there’s no any option for rotating chart labels, it works only in Chord chart type. However you can format the numbers so that they take less space.
Here is the link to documentation.
Thanks
I use the compositive_waterfall graphics like the one in the example, but I want the display below to rotate 45 degrees:
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’] }],
I’ve added like the two scripts below but not changed, maybe you have a solution
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’], Direction: -1, SlantedText: true, SlantedTextAngle: 45
}], ================================
================================= XAxis: [{ Type: ‘category’, Labels: { Rotation: -45, Style: { FontSize: ‘13px’, FontFamily: ‘Verdana, sans-serif’ } } }],
Do you have a solution?
I use the compositive_waterfall graphics like the one in the example, but I want the display below to rotate 45 degrees:
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’] }],
I’ve added like the two scripts below but not changed
// Horizontal axis XAxis: [{ Type: ‘category’, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’], Direction: -1, SlantedText: true, SlantedTextAngle: 45
}], ================================
================================= XAxis: [{ Type: ‘category’, Labels: { Rotation: -45, Style: { FontSize: ‘13px’, FontFamily: ‘Verdana, sans-serif’ } }, Data: [‘Total cost’, ‘Rent’, ‘Utilities’, ‘Transport’, ‘Meals’, ‘Commodity’, ‘Taxes’, ‘Travel’], }],
Do you have a solution?
hi, i just recently purcased this awesome template and integrating it with my laravel + vuejs single page application project…
And when i just integrating it (just adding main navbar and second navbar) and place holder for content i get this error in console
Uncaught TypeError: Cannot read property ‘top’ of undefined : app.js:35
Hi
What jQuery version are you using?
Thanks
i am using the same jquery version you included in the download, after i’m testing it around, i think it have something to do with vuejs and i have no idea how to fix it….
i am using the same jquery version you included in the download, after i’m testing it around, i think it have something to do with vuejs and i have no idea how to fix it….
Hmm that’s strange. I am not experienced with Vue.js so can’t help you much i’m afraid. Just in case, can you please email me your JS files you’re loading on your page to e.kopyov[at]gmail.com? Want to check the ordering.
Thanks
Is there a way for the Select2 DropDown menus to always show the scrollbar? It’s a bit confusing for people when the dropdown menu is longer than what is shown and it doesn’t provide any indication to the end-user that there are more options available. Thanks.
Hi
Yes, but this solution works only on Windows, on Mac scrollbar is hidden despite the CSS solutions. You can add a scrollbar by changing overflow-y: auto; to overflow-y: scroll; in:
.select2-results > .select2-results__options {
...
overflow: scroll;
}
But i would strongly suggest not to do it.
Thanks
Misposted.
Hi,
I’m using a horizontal form modal. I got quite some fields on it. For some reason on a mobile device I can’t scroll downwards in the modal. So because of this, I’m unable to click the submit button.
How can I get this solved? Thanks
Hi
Hmm, that’s strange, i’ve just checked demo page with modals on mobile and all modals are scrollable.
Can you please send me your markup and JS config for your modals to e.kopyov[at]gmail.com? I’ll check what’s wrong. A quick one – make sure your body tab doesn’t have hidden overflow.
Thanks
Hi, I am having troubles using the .valign-bottom helper class. My goal is to move a .sidebar-category element to the bottom of the sidebar. I am trying to do this in Layout 1 default. I have been stuck on this for a while now and would love some help with this. Thanks.
Hi
.valign-bottom doesn’t affect divs, it’s mostly for tables and table components.
In your case, you need to stick content container to the bottom using absolute or fixed position, something like:
.sidebar-category-bottom {
position: absolute;
bottom: 0;
width: 100%;
}
Hope this helps. Thanks
Hello How do I make the top menu automatically open the sub-menus on HOVER? Now I need to click on menu heading to open submenu…
Hello
You can find an example on this page. Basically you just need to include
<script type="text/javascript" src="assets/js/plugins/buttons/hover_dropdown.min.js"></script>
and add data-hover="dropdown" to your dropdowns.
Thanks
thank you for your reply….is there a way to minimize the time it takes for the dropdown menu to close after the mouse is TAKEN AWAY from the menu? is there a time limit on hover menu activity?
double
Hi
data-delay=”0” should help, default value is 500.
Thanks
where do I set it up? did not find it – data-delay
Add it to the dropdown markup – data-toggle="dropdown" data-hover="dropdown" data-delay="0"
for some reason this works (open on hover) in local view and not on server – what can be the reason for this?
It should work just fine if you are loading all required JS files and don’t get any JS errors. Make sure your code is similar on both instances.
Thanks
Hello,
I bought Limitless a few month ago in version 1.5 and just now I want download version 1.6 and If I downloaded from themeforest it still version 1.5 please where is my mistake?
Thank you
Filip
Your collection in Limitless is best.
Hey Filip
Hmm that’s strange, version 1.5 isn’t available on Envato, because once the new update comes out, older version gets replaced with a new one. So when you download the item, it always downloads the latest version.
How do you see that your copy is 1.5?
Thanks
How to display in <input type = ’’ text ”..> format money, for example: 12,234,45.00
thx
Hi. I just bought your Admin Template. I have a question. If I use your template at more than two site, Is this no problem?
Hi
You need to purchase a new license for each project, you are allowed to use 1 license in 1 end product only.
Thanks!
very good work. 2 thumbs up.
Thank you! 
Can i get your free version just to check your code is compatible with angularjs1?
This is a static HTML template, it’s compatible with all Angular versions, but requires additional development. And sorry, but i don’t have free version, you can see the markup in live preview.
Thanks
Is this for admin only
Hi
You can use it as a front end template as well, it’s up to you. This is a static HTML template and doesn’t have any limitations.
Thanks
Hi, you have announced a year ago there will be Bootstrap 4 version of this template. When do you plan to release it and do you have in plan to offer support for React?
Hi
As i have mentioned already, Bootstrap 4 is still in alpha version and isn’t stable. I am working on a new update, but i won’t release it until BS first beta is released, because update from alpha to beta might take quite a lot of time.
React – yes i definitely do, but i don’t have any ETA at the moment, focused on BS4 version. I’ll provide more information when version 2.0 is released.
Thanks
Hi, just asking is this theme has something link this ? http://jsfiddle.net/jermartin77/vmc3e/
Hey
Unfortunately no, all breadcrumbs have classic design, but you can easily add this kind of component to existing set of components.
Thanks
Hi,
First of all I would like to say that your theme is awesome and very clean, it’s really pleasant to work with.
I found just one missing feature: a page with a full sized map (or other content). I tried to integrate a google map on the content-wrapper div and it works great actually : https://captaincoaster.com/en/map/But, on a mobile device, nothing appears. Do you have any idea why ? What do you suggest for a full page content like this ?
Thanks
Hey
Try to initialize map in children container, not in <div class="contain-wrapper"> itself as this container is a part of page markup. This should fix the issue.
Thanks!
Hello dear author,
I have been usng this motive sicne 2015. Recently I tried to update the pph file on my server to 7.0 and my site crushed in the post section. Reverting to 5.6 verion helped. The admin claims that the motive is incopatible with the new pph version.
Can you send me some updates of the motive which would be compatible with pph v. 7.0?
with regards
Anna Popławska
Hi Anna
I think you’ve left a comment on a wrong template 
Thanks
how do i affix multiple sidebars on some of the pages?
You just need to add 2 id’s for both sidebars and configure affix for both sidebars separately in JS.
Hope this helps
i am finding it difficult to do, can you give me an example with left and right sidebars affixed? i will really appreciate it.
Sorry, this is considered as customization and is not included to support. You can send me your code to e.kopyov[at]gmail.com if it doesn’t work, I’ll check it out and explain what’s wrong or fix the issue.
As I have explained, it should be pretty easy to do if you use the code from existing examples applied to multiple sidebars.
Thanks
ok, thanks anyway
No worries. Feel free to contact me if you have any questions or issues