In This Topic
The CandlestickChartSeries can be styled using the SeriesStyle property.
- To style the series in design time:
- Add a reference to the C1.Web.Wijmo.Controls.dll to your project.
- Add the C1CandlestickChart from the toolbox to your page. For more information on adding the C1CandlestickChart icon to your Toolbox, see Getting Started with ASP.NET Web Forms.
- In the C1CandlestickChart properties window click on the ellipsis button next to the SeriesStyles property. The CandlestickChartStyle Collection Editor appears.
- Click Add to add a new ChartStyle member. Each ChartStyle will represent a particular BarChartSeries. For example, the first ChartStyle member will represent the series for the first CandlestickChartSeries.
- In the CandlestickChartStyle Collection Editor expand the Fill node and click on the ellipsis button next to ColorBegin and enter the following value in the Value textbox: Hex={FF,66,CC}.
- Click OK to save and close the More Colors dialog box.
- In the CandlestickChartStyle Collection Editor expand the Fill node and click on the ellipsis button next to ColorBegin and enter the following value in the Value textbox: Hex={FF,66,CC}.
- Click OK to save and close the More Colors dialog box.
- Set the Type to LinearGradient and Opacity to 0.8.
- Click on the ellipsis button next to Stroke and enter the following value in the Value textbox: Hex={FF,00,66}.
- Click OK to save and close the More Colors dialog box.
- To style the series in source view:
- Add a reference to the C1.Web.Wijmo.Controls.dll to your project.
- Add the C1CandlestickChart from the toolbox to your page. For more information on adding the C1CandlestickChart icon to your Toolbox, see Getting Started with ASP.NET Web Forms.
- Click the Source tab and add the following code within the <SeriesStyle> tag:
Markup |
Copy Code
|
<cc1:ChartStyle Opacity="0.8" Stroke="#FF0066" StrokeWidth="1.5">
<Fill Type="LinearGradient" ColorBegin="#FF66CC" ColorEnd="#FF66CC"></Fill>
</cc1ChartStyle>
|
This topic illustrates the following:
The first BarChartSeries style is modified: