I have a CCC Pie Chart which brings the years months (1,2,3,... 12).Don't ask why I'm using a pie chart for this. I want all the slices to be equal in size but also to see the values 1,2,3 in the slices values.The Sql (datasource) behind it is SELECT DISTINCT MONTH,MONTH FROM DB ORDER BY MONTH ASC.How can I achieve this? If I change my sql to SELECT DISTINCT MONTH,MONTH/MONTH FROM DB ORDER BY MONTH ASC, the slices are equal in size but instead of the normal slices values (1, 2, 3..) I have "1", the result of MONTH/MONTH
pentaho CCC Pie Chart with equal slices
1k Views Asked by bluesony At
1
There are 1 best solutions below
Related Questions in PIE-CHART
- D3 Pie Chart with only one part of JSON data
- iOS-Charts: Set UIImageViews in accordance with PieChart's Pie positions?
- Any third library to draw a Half Pie Chart (Semi Circle) with Animation in iOS?
- ZingChart followed mysql tutorial but i want a pie not a bar
- How to increase size of pie segment on hover in d3
- disable click event on google pie chart
- Adding labels to pie chart in R... Radiating "spokes"?
- Remove the Legend from nvd3 pie chart
- Razor - Display Dictionary Data in a PieChart using JavaScript
- WebGL pie chart - Different results at different Chrome versions
- Interactive pie Chart that works on Safari
- Pie chart using Charts library with swift
- Tooltip not generating when hovering a pie chart
- Null pointer exception when back is pressed in the PieChartActivity- using MPAndroidChart
- Center D3 Piechart in the center of a div, respecting it's dimensions
Related Questions in PENTAHO-CDE
- Pentaho BI data source for custom OLAP (XML/A) provider
- MDX Query in Saiku Analytics (date string to date)
- Custom HTML Page in Pentaho User Console 5
- How to execute sql script in pentaho and store in xml.
- How to retrieve User or Admin Images??how to clear that CDA cache memory?
- How to create a dashboard from rest service inside pentaho?
- Scheduling a job in pentaho 5.1 setting logging information to Email
- Dashboard look and feel customization in pentaho
- How to call another dashboard in Pentaho using POST method
- Pass parameter to pentaho CDE report
- mongodb and pentaho CDE dashboard
- how to integrate D3 js chart in pentaho CDE
- How to Display Percentage values on TOP of CCC Bar Chart in CDE (Non-Stacked Bar Chart)
- Dynamic naming of excel sheets using pentaho kettle
- Pentaho - CDE How to use a one datasource with one execution for two components
Related Questions in CCC
- How to Display Percentage values on TOP of CCC Bar Chart in CDE (Non-Stacked Bar Chart)
- How to make jQuery hover and mouseout work on div with child elements
- Filter cached sqlJdbs query in Pentaho CE
- Wrap or cut long labels in Pentaho CCC
- Pentaho-IVYDC and IVYBC Plugin
- Draw an arbitrary number of lines on a protovis chart
- How to use specific d3 chart in pentaho
- T 103 - Negative Marking
- Problems with 2d arrays in CCC 2018 j4 problem
- .Net FTPS Connection times out after sending 'CCC' command
- pentaho CCC Pie Chart with equal slices
- Update second pie chart based on click event of first pie chart in Pentaho CDE
- Pentaho CDE Line Chart Legend Click Mode
- CCC pieChart visualization
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I found it! I used the sql SELECT DISTINCT MONTH,MONTH/MONTH FROM DB ORDER BY MONTH ASC to have the slicers with the same size. After that, at CCC pie chart advanced propertie, in the valuesMask field I entered {category}. See also http://forums.pentaho.com/showthread.php?137038-how-to-put-label-in-the-pie-chart-outside-the-wedge-with-CDE