<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Colored Bars in Tabulate Chart in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81963#M37028</link>
    <description>I am not seeing any options to change the bar color or to get rid of the red dots.  The chart is contained within a MultiTblPlotColBox(), which does not surface to JSL any specific options.&lt;BR /&gt;The only solution that I can suggest, is to take the results from your Tabulate Table, and to make it into a data table, and then run the Distribution Platform or Graph Builder against that output.  You will get much further along in getting the changes you want.</description>
    <pubDate>Tue, 30 Oct 2018 15:27:01 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2018-10-30T15:27:01Z</dc:date>
    <item>
      <title>Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81937#M37024</link>
      <description>&lt;P&gt;Is there a way (I am hoping via scripting) that will allow me to color the bars in the chart of a tabulate window.&amp;nbsp; Also, is there way to get rid of the red dots in the background.&amp;nbsp; This chart is a much nicer way of displaying some data, but it is not very customizable.&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Tabulate Chart" style="width: 544px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14113i29A9D915C2DAE99A/image-dimensions/544x306?v=v2" width="544" height="306" role="button" title="tabulate chart.png" alt="Tabulate Chart" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Tabulate Chart&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 18:59:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81937#M37024</guid>
      <dc:creator>mann</dc:creator>
      <dc:date>2018-10-30T18:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81963#M37028</link>
      <description>I am not seeing any options to change the bar color or to get rid of the red dots.  The chart is contained within a MultiTblPlotColBox(), which does not surface to JSL any specific options.&lt;BR /&gt;The only solution that I can suggest, is to take the results from your Tabulate Table, and to make it into a data table, and then run the Distribution Platform or Graph Builder against that output.  You will get much further along in getting the changes you want.</description>
      <pubDate>Tue, 30 Oct 2018 15:27:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81963#M37028</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-10-30T15:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81964#M37029</link>
      <description>That is the tedious route I was trying to avoid. Thanks for helping me understand the reasons.&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Oct 2018 15:29:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81964#M37029</guid>
      <dc:creator>mann</dc:creator>
      <dc:date>2018-10-30T15:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81965#M37030</link>
      <description>&lt;P&gt;If you are planning on scripting it, then you may want to explore Summary under the Tables menu and then use Graph Builder or Distribution.&amp;nbsp; Script the two together and it will be faster as well.&amp;nbsp; Maybe something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here (1);
Open("$SAMPLE_DATA/Big Class.jmp");
Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary(
	Group( :age, :sex ),
	Mean( :height ),
	Mean( :weight ),
	Freq( "None" ),
	Weight( "None" ),
	statistics column name format( "stat of column" ),
	Link to original data table( 0 ),
	output table name( "Big Class Summary" )
);
dts= Data Table ("Big Class Summary");

dts &amp;lt;&amp;lt; Graph Builder(
	Size( 534, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :Mean of height ), Y( :Mean of weight ) ),
	Elements( Position( 1, 1 ), Histogram( X, Y, Legend( 5 ) ) ),
	Elements( Position( 1, 2 ), Histogram( X, Y, Legend( 6 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model( 5, Properties( 0, {Line Color( 0 ), Fill Color( 3 )} ) ),
			Legend Model( 6, Properties( 0, {Line Color( 0 ), Fill Color( 5 )} ) )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Oct 2018 15:42:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81965#M37030</guid>
      <dc:creator>Chris_Kirchberg</dc:creator>
      <dc:date>2018-10-30T15:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81976#M37033</link>
      <description>There may be a solution to my problem in there, but I cannot immediately determine how to summarize the original data so that I can plot it by percent within a group (height or weight) across the bins (male and female). "Summarize" will give me percent of total in the wrong dimension - across all groups&lt;BR /&gt;Maybe there is a much better solution: If I use "Big Class" and plot using graph builder: height on Y and sex on GroupX and show it all as a histogram: the histogram is by count. I would love to see it by percent (and then I can color by my third column).&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Oct 2018 16:28:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81976#M37033</guid>
      <dc:creator>mann</dc:creator>
      <dc:date>2018-10-30T16:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81987#M37035</link>
      <description>&lt;P&gt;Can you post some sample data?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 16:44:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81987#M37035</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-10-30T16:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81991#M37036</link>
      <description>&lt;P&gt;These are what I am using now.&amp;nbsp; I would like to be able to plot these with percent instead of by count.&amp;nbsp; That way the data from 13 does not make the data from 06 seem to disappear.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled3.png" style="width: 486px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14114iEBE5E8475308AFF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled3.png" alt="Untitled3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 19:00:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/81991#M37036</guid>
      <dc:creator>mann</dc:creator>
      <dc:date>2018-10-30T19:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/82032#M37044</link>
      <description>&lt;P&gt;Hi @mann,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think what&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4550"&gt;@pmroz&lt;/a&gt; is asking is what is the structure of the data table that you are using to create the table in tabulate? What are the columns and rows?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 19:08:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/82032#M37044</guid>
      <dc:creator>Chris_Kirchberg</dc:creator>
      <dc:date>2018-10-30T19:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Colored Bars in Tabulate Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/82063#M37046</link>
      <description>My apologies. We can use the Big Class data set and the code that was provided above by Chris. The histogram chart generated by that script shows COUNTS of students at each height and weight by male and female. I want to show the percent of students at each height and weight by male and female.&lt;BR /&gt;Tabulate does this just fine, but I could not then cause tall students to be purple, and middle weight students to be blue.&lt;BR /&gt;Graph builder does allow that kind of coloring, but does not allow the histogram by percentages, only by counts.&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Oct 2018 20:05:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Colored-Bars-in-Tabulate-Chart/m-p/82063#M37046</guid>
      <dc:creator>mann</dc:creator>
      <dc:date>2018-10-30T20:05:12Z</dc:date>
    </item>
  </channel>
</rss>

