jQWidgets Forums
Forum Replies Created
-
Author
-
February 15, 2017 at 3:21 pm in reply to: Line Chart with Overlapping Data Line Chart with Overlapping Data #91596
@hristo,
Here is a toned down an example as I could come up with:https://jsfiddle.net/p3ejgu2t/
See how the blue line is overwritten by the red line after “2”. This is the same problem we have but in this case we have 15 series.
In this example you can see how “6” over writes the blue line completely:
February 9, 2017 at 8:01 pm in reply to: Line Chart with Overlapping Data Line Chart with Overlapping Data #91457@hristo, they don’t have different data and they alternate between 0% and 100%. It’s just the way the data works out in this case. Other versions of this same report have degrees but occasionally we run into one of these.
November 14, 2016 at 7:26 pm in reply to: Increase spacing between elements in pie chart Increase spacing between elements in pie chart #89048Christoper,
See how in the second image the colored line (there must be a name for that) goes through the text. That was the problem I should have explained better. It looks like it’s not a problem with the version of the library you’re using on JSFiddle so we’ll have to upgrade to the new version.However, something doesn’t look right when I change labelRadius to 180 (in the JSFiddle). The green line looks like it’s pointed to 0.943 and the blue line looks like it’s pointed to 1.415. My client will complain about that. Is there any way to fix it without turning off labelLinesAngles?
November 11, 2016 at 1:56 pm in reply to: Increase spacing between elements in pie chart Increase spacing between elements in pie chart #89010Here’s my example:
http://jsfiddle.net/swarrenzimconet/k469n2hs/1/December 19, 2014 at 7:45 pm in reply to: Lines from pie chart to values Lines from pie chart to values #64499Thank you!!!
For anyone else interested, I had to set the following on my series:
radius: 90, labelRadius: 100,
December 18, 2014 at 2:10 pm in reply to: Lines from pie chart to values Lines from pie chart to values #64414Dimitar,
Thanks for answer my question. In several cases this causes the line to go through the numbers. I can’t figure out how to fix this now. 🙂December 17, 2014 at 6:41 pm in reply to: Display a different value in series formatFunction Display a different value in series formatFunction #64342Dimitar,
Thanks for pointing me in the right direction. For anybody else looking for the answer to this problem, I added another datafield with a ‘-data’ but the same start as the percentage value and but didn’t add it as a series. Then I used the following in the series:toolTipFormatFunction: function(value, itemIndex, series, group, categoryValue, categoryAxis){ var returnVal = series.dataField + ', '; returnVal += ' - ' + data[itemIndex][series.dataField + '-data']; return returnVal; }
In case anyone else finds this, I was pulling data from a JSON source and had the date field formatted like ‘yyyy-MM-dd’. In the datafields for the data source I had to add a format option to the field or it was being adjusted based on my current timezone:
{name:’dueDate’, type: ‘string’, format: ‘yyyy-MM-dd’},
July 3, 2014 at 8:57 pm in reply to: Performance Problem When Trying to Upgrade to 3.4 Performance Problem When Trying to Upgrade to 3.4 #56754Adding the baseUnit property fixed the problem. Thanks!
August 30, 2012 at 2:52 pm in reply to: Problem with jqxSplitter automatically scrolling to the right Problem with jqxSplitter automatically scrolling to the right #7296I found my own answer. I should have thought of this sooner :-):
$('#panel').scroll(function(){
var element = $(this);if(element.scrollLeft() > 10){
$('#mainSplitter').jqxSplitter('collapseAt', 0);
}
}); -
AuthorPosts