Jump to content

nandrianakis

uniGUI Subscriber
  • Posts

    26
  • Joined

  • Last visited

Recent Profile Visitors

635 profile views

nandrianakis's Achievements

Newbie

Newbie (1/4)

0

Reputation

  1. Is there any similar for unimdbgrid?
  2. Ok this is working ecxept that you must change sender.store.max('A') to sender.store.sum('A') Thanks a lot
  3. I dont know. Thats the problem I supposed that pie chart must have a property with the percent of each value
  4. I am using to display tooltip this: function chart.beforeInit(sender, config) { config.series[0].tooltip = { trackMouse: true, width: 120, renderer: function(tip, item) { tip.setTitle(item.get('LL')); tip.update('<b>' + Ext.util.Format.number(item.get('A').toFixed(2),'0,000.00')+'</b>'); } } } I need also to show the percent for example if the title is 2015 and value is 10000 and that is 25% of the total Display something like this 2015 10,0000.00(25%)
  5. Good morning I need also to display the percent in tooltip(clientside). Is this possible? Rgs
  6. I need to show the remain time until sessions timeout When the timeout restores, due to request to server, the remain time will be updated accordingly
  7. Good Morning Is there any possibility to get the remaining time to the SessionTimeOut? Rds
  8. Thank you OK i need also to display in tooltip the title of the series as appear in legend Is this possible?
  9. In your code renderer: function(tip, item) { tip.setTitle(item.get('LL')); tip.update('Αγορές: ' + item.get('B')); } the parameter item has the get method with parameter 'LL' 'A' etc. What other options there are for this parameter?
  10. Goog Morning Anything about my question? I need also the Series title, and the percent of the pie chart thanks NA.
  11. OK this works But i have some questions what 'LL' means? what more options are with item.get('something')? where can i found the documentation? Thanks
×
×
  • Create New...