function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sivakumari2iSivakumari2i 

Changing chart color

Hi , i am using visualforce charting in my visualforce page.

 

By default i am getting blue color for the bars in charts.

 

Is there any way to change the color of the charts increase the label size?

 

Thanks,

S.Sivakumar

devedevendradevedevendra

Use colorSet attribute as shown in the below example

 

 

<apex:barSeries tips="true" title="status" orientation="vertical" axis="bottom"
xField="name" yField="status" colorSet="#000000">
<apex:chartTips height="200" width="300"/>

 

Thanks,

devendra