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
- How to achieve this with chart.js in react?
- How to display integers instead of floats in a pie chart legend?
- How to show values instead of percentages and the sum in the center in PieDonut?
- How to create faceted pie chart where each facet adds up to 100%?
- Problem generating pie charts in Vue (ECharts)
- HighCharts Pie chart dataLabels are not fully displayed
- My TABLEAU pie chart´s colors aren´t corresponding to the numbers
- How to Display Values Next to Legend in React Pie Chart? Getting 'Undefined' Error
- ggplot2: using one column in pie chart and calculate the number of appearances
- Vega-lite: Pie Chart with multi-selection in the legend
- igraph in R: Adding Differing Slices to the Vertex Pies
- The labelline of piechart of apache echart is visible on hover
- Pie-chart in Apache Superset
- Reliably avoiding legend overlapping other elements in matplotlib pie chart
- Create graphs from databases in Notion
Related Questions in PENTAHO-CDE
- How to define the loop xpath in Pentaho
- Execute statement in pentaho cde sql over sqlJndi
- unable to write file to database
- i have a problem in pentaho bi server dynamic row
- Does Pentaho allow the "Filter rows" step to load a list of values?
- How to change default path in pentaho-server 9.0.0.0.423?
- Pentaho cde & Report-designer source
- Pentaho mondrian cube main sql query
- Using Pentaho CDE check component data as file name for export
- Looking for updates in Pentaho7.x for log 4j vulnerability and it's procedure
- Pentaho CDE Dashbord: how to export to excel multiple tables into one sheet with button click
- How input data in line chart in Pentaho?
- Checking multiple table existence in Pentaho
- How I can read the file on the everyday basis in pentaho in this format? "tcms_oneed_YYYYMMDD.txt"
- Pentaho - Spoon Decimal from Text File Input
Related Questions in CCC
- Problems with 2d arrays in CCC 2018 j4 problem
- T 103 - Negative Marking
- Pentaho-IVYDC and IVYBC Plugin
- How to Display Percentage values on TOP of CCC Bar Chart in CDE (Non-Stacked Bar Chart)
- Wrap or cut long labels in Pentaho CCC
- Filter cached sqlJdbs query in Pentaho CE
- Pentaho CDE Line Chart Legend Click Mode
- Draw an arbitrary number of lines on a protovis chart
- pentaho CCC Pie Chart with equal slices
- How to use specific d3 chart in pentaho
- Update second pie chart based on click event of first pie chart in Pentaho CDE
- How to make jQuery hover and mouseout work on div with child elements
- .Net FTPS Connection times out after sending 'CCC' command
- 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 # Hahtags
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