<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>a!radioButtonField</title><link>https://community.appian.com/discussions/f/user-interface/21028/a-radiobuttonfield</link><description>hello, 
 Is it possible to change color of radio button labels ?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: a!radioButtonField</title><link>https://community.appian.com/thread/81943?ContentTypeID=1</link><pubDate>Mon, 24 May 2021 16:58:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9a58ac44-956d-4743-9e91-a33c5177580f</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;Whilst this does meet the requirement as expressed in the original post you should be aware that good UX design should never rely in colour alone to convey meaning as this might be missed by anyone with colour-blindness. Always have a secondary, non-colour based method of conveying information.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: a!radioButtonField</title><link>https://community.appian.com/thread/81936?ContentTypeID=1</link><pubDate>Mon, 24 May 2021 15:16:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a1a2a715-b8fb-482f-b49d-23c40f87f29a</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;As noted here, this cannot be done directly within the radio button - but you can create your own custom radio buttons using a side by side layout with a combination of radio button and rich text display field such as:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="csharp"&gt;a!localVariables(
  local!options: {
    {label: &amp;quot;Option 1&amp;quot;, value: 1, color: &amp;quot;ACCENT&amp;quot;},
    {label: &amp;quot;Option 2&amp;quot;, value: 2, color: &amp;quot;POSITIVE&amp;quot;},
    {label: &amp;quot;Option 3&amp;quot;, value: 3, color: &amp;quot;NEGATIVE&amp;quot;}
  },
  local!selection,
  {
    a!forEach(
      items: local!options,
      expression: {
        a!sideBySideLayout(
          items: {
            a!sideBySideItem(
              width: &amp;quot;MINIMIZE&amp;quot;,
              item: a!radioButtonField(
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                choiceLabels: {&amp;quot;&amp;quot;},
                choiceValues: {fv!item.value},
                value: if(
                  local!selection=tostring(fv!item.value),
                  local!selection,
                  null
                ),
                saveInto: local!selection
              )
            ),
            a!sideBySideItem(
              item: a!richTextDisplayField(
                labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                value: a!richTextItem(
                  text: fv!item.label,
                  color: fv!item.color
                )
              )
            )
          }
        )
      }
    ),
    a!textField(
      label: &amp;quot;Selection&amp;quot;,
      value: local!selection,
      readOnly: true
    )
  }
)&lt;/pre&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/custom_5F00_radio_5F00_buttons.JPG" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: a!radioButtonField</title><link>https://community.appian.com/thread/81908?ContentTypeID=1</link><pubDate>Sun, 23 May 2021 07:15:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7f9ea653-fb88-41e4-b8b8-c1c8e6caab50</guid><dc:creator>sreedevij0001</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;There is no property in radibuttonfield component to set the label color. You can use a richtextdisplay field with your desired style/color to show your label and make the labelposition of radiobutton field as &amp;quot;COLLAPSED&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hope this helps!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Sree Devi J R&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>