Search Type: Posts; User: alex9311

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Hey all,

    I have a chart that has one big outlier in the data. Is there anyway to format a break in the y axis to make the other values display better? Any other ideas on how to deal with this...
  2. Replies
    1
    Views
    81
    Hey all,
    I'm taking a store, grouping it, doing getGroups() on it, and mapping that array onto a new store. Code:



    createStore:function(){
    var store =...
  3. Thanks! I actually found a way to do it without using themes.

    To configure the title label color of an axes just add the label title configuarion to that axes:

    labelTitle:{

    fill:"#B22222"...
  4. I have a chart with axes label titles and I want to change the color of the labels from black to red. I've looked here: http://www.sencha.com/learn/drawing-and-charting/ under "theming" and I think I...
  5. figured it out mostly...


    itemclick: function(record, index){
    var grid = Ext.ComponentQuery.query('grid')[0];
    var store =...
  6. I have a grid and a scatter plot representing the same data. I'd like to be able to click on a row in the grid and have that corresponding point on the plot be highlighted. I'm having trouble...
  7. I ended up using and iframe plugin I found here:

    http://www.sencha.com/forum/showthread.php?110311-iframePanel

    Using that plugin I could write the function:

    ...
  8. Replies
    8
    Views
    4,713
    Thank you! Just what I needed
  9. I'm having trouble with what I thought would be a simple task. I have a scatter plot and I want to be able to click on a point to highlight it (and for it to remain highlighted). I have a listener...
  10. Okay I've gotten a bit farther now, thank you.Here is my function (called from a button), "thepanel" is my blank panel. I'm using a relative path to access another one of my ext projects.

    ...
  11. yes that worked, thank you!
  12. I have two separate applications and I would like to integrate them. I'm trying to use a button click event to load a url where my second application is into a basic panel. I found this post on the...
  13. I'm trying to change a given row in my grid so that it is green. I'm using the addRowCls() function:

    grid.getView().addRowCls(row,'green-row');


    Here is my css...
  14. So I have a scatter plot and a grid representing the same data. I'm trying to make it so if a user clicks on a point in the plot, that point and its matching row in the grid will be highlighted.
    ...
  15. I figured out a way to color the markers differently according to a flag in the data. I used a renderer in the series, here is the code:


    renderer:function(sprite, record, attr,...
  16. Thanks for the reply!

    Would there be a way to break up a store into two different series depending on some flag variable in the store. Like having each series represent different rows of data from...
  17. I have a scatter plot to visualize data of the form:

    name:"Test1", number:10, percent:20
    name:"Test2", number:14, percent:35
    name:"Test3", number:8, percent:15
    name:"Test4", number:10,...
  18. Hi all,

    I want to figure out a way to highlight certain points in my scatter plot. I've spent some time looking into it but have found no easy way. If I was plotting data that looked like this:
    ...
  19. Thanks! Once I started looking more into my array I realized I could just convert the strings to ints when I construct that array and map it directly. Here is the working code:


    ...
  20. Hey all,

    I'm trying to take a store that has letter grades ( "A", "B",etc..) and create a new store that has percentages (95,85,etc). I think I almost have it working but something isnt quite...
  21. nevermind, figured it out
  22. Is this also an issue in extjs 4? How/where would you reccomend converting the dates to date-type in MVC format? My model says the type is date, do I still have to convert them?

    Thank you for any...
  23. I have a category axis with letter grades as the field. I want the axis to create one hashmark per grade. All rows with the letter grade "C" will be plotted on the same C on the category axis. Right...
  24. Hm ok. So now I just need to figure out how to apply different filters for different series so they plot different parts of the data

    Thanks!
  25. Ah thats what I thought, thank you. Is it possible to have a series only plot certain rows in a store? I would want to check one of the columns' value and decide wether or not to include it in the...
Results 1 to 25 of 74
Page 1 of 3 1 2 3