Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
This is what my graph currently looks like.
I am trying to put the axis labels on the right side of the left axis in ios charts by danielgindi as seen in the second picture above. Any suggestions, I have checked countless forums and posts send help.
As per your requirement you can use below property to get your YAxis labels inside chart.
Swift :
lineChartView.leftAxis.labelPosition = .insideChart
lineChartView.rightAxis.labelPosition = .insideChart
Objective-C:
self.lineChart.leftAxis.labelPosition = YAxisLabelPositionInsideChart;
self.lineChart.rightAxis.labelPosition = YAxisLabelPositionInsideChart;
Hope this will helps!
Output :
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Need to draw a custom world map drawing either the complete world map or a certain region. Also highlighting different regions with different colours.
I have tried https://github.com/KiloKilo/WorldMatrix. I am able to colour the regions but unable to draw custom regions and provide custom colour to certain regions. Unable to find any other library.
Using below code, it shows nothing
let generator = WorldMatrixGenerator()
// Set the number of columns per rows (Default: 100)
generator.columns = 20
// Set your desired map cutting (Default: .world)
// use .custom(north, east, south, west) for a custom bounding
generator.mapCutting = .europe
// Set the output type (.enum, .ascii, .emoji) (Default: .enum)
generator.exportType = .enum
// Generates the world array
generator.generate()
Basically want to achieve the one in the image. Can someone let me know how can draw custom regions?
Thanks for the help in advance.
This question already has answers here:
How to hide labels in ios-charts?
(3 answers)
Closed 4 years ago.
I want try remove small squares at the bottom of a chart( danielgindi/Charts).
post picture.
plz help me....
chart example
It's very simple
juste a line
chartView.legend.isEnabled = false
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am working on visualization tree map which shows the product categories.There are two values of any range.First value decides size of segments and second value decides the color of segments.Now the conditions is if value is +ve then color range must be vary between green color and if -ve then value vary between red color (for big value color effect will be more dark and for small value color effect will be more light )
How do I done this .
the value ranges between 12 to 8 digits (- or +ve)
Help me please.
You would want start by looking at the colorWithHue:saturation:brightness:alpha: method of UIColor. The hue value will control choice between greens and reds. The saturation and/or brightness value will determine the "darkness", depending on what exactly you mean by "dark".
You can create a simple app with a UISliders for hue/sat/brightness and a UIView to display the selected color to experiment with HSB colors. Here's a gist that implements such a tool.
This question already has an answer here:
How to set arrows at the end of Core Plot axis?
(1 answer)
Closed 8 years ago.
is it possible to add an arrow on the graph like that with corePlot ?
Yes, but only on axis lines. See the Plot Gallery example app for several examples.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I have a canvas which contains a single myComponentA. A myComponentA contains a MyComponentB. The myComponentB contains a number of myComponentA's giving a tree structure...Ok so far.
The structure is stored as an XML file.
When I load a big (60 or so components), the components are not visible... When I change the player quality to low or medium they appear...!?
Towards the bottom of the diagram a component is clipped through the middle as though it has been cut off...(The containing canvas continues on empty...)
This is probably an issue with the flex measuring mechanism. Your myComponentA should probably report its measuredHeight and measuredWidth to the parent container. This will likely be done, in your case, in an override of the measure function. e.g,
override protected function measure():void {
measuredWidth = //x position + width of rightmost child
measuredHeight = //y position + height of bottommost child
super.measure();
}
If you do something like this in both myComponentA and myComponentB, and you inherit from a Container (e.g., canvas) then things should work mostly. If your components inherit from UIComponent, you might have more trouble (i.e., there won't be any scrollbars).
Keep in mind that the measure function only sets the measuredHeight and measuredWidth. Depending on your situation, you may need to overide updateDisplayList as well to properly set the actual height/width/positions of the children.