Y culling doesn't seem to exist
See original GitHub issueI put a max value of 4 on y.tick.culling.max and it doesn’t seem to modify the Y axis. The x axis culling seems to work fine.
var chart = c3.generate({
data: {
columns: [
['sample', 30, 200, 100, 400, 150, 250, 30, 200, 100, 400, 150, 250, 30, 200, 100, 400, 150, 250, 200, 100, 400, 150, 250]
]
},
axis: {
y: {
//type: 'category',
tick: {
culling: {
max: 4 // the number of tick texts will be adjusted to less than this value
}
// for normal axis, default on
// for category axis, default off
}
}
}
});
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
What's wrong with Occlusion Culling - Unity Forum
The idea here is that each individual mesh will be turned on or off based on the occlusion data. So if you have...
Read more >OpenGL Face culling not working properly - Stack Overflow
Whenever I activate glEnable(GL_CULL_FACE) I get different results for each object. I can either get the cube to be shown properly (glCullFace(GL_BACK)), or...
Read more >Camera cull method culling the wrong objects #4092 - GitHub
Objects appear to be culled prematurely. ... It appears that Camera.cull() does not take the camera's viewport positioning into account.
Read more >Back-face culling not working correctly - OpenGL: Basic Coding
I'm new to culling and I've followed a tutorial but in my program it doesn't seem to be culling correctly. What's happening; Some...
Read more >allowing culling increases poaching of a large carnivore ...
Blood does not buy goodwill: allowing culling increases poaching of a large ... Indeed, liberalizing killing appears to be a conservation ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Is this a desired feature? I know I just wanted it for a project…
Hi, try this out: axis: { y: { tick: { count: 5, format: function (value) { return Number(value).toLocaleString(‘de-DE’, {maximumFractionDigits: 2}); }}}}
Will this solve the issue?