<div id="RadScheduler1_0_0" title="Good Friday" class="rsApt Meetingstyle" style="height:21px;width:100%;"><div class="rsAptOut">
| <telerik:RadComboBox ID="cmbColumns" runat="server" Skin="Sunset" Text="Show Columns" AllowCustomText="true" ToolTip="Show Columns" EnableTextSelection="false" |
| DataSourceID="ColumnsDataSource" AutoPostBack="true" EmptyMessage="Show Columns" > |
| <ItemTemplate> |
| <asp:CheckBox ID="cbColumn" runat="server" |
| oncheckedchanged="cbColumn_CheckedChanged" Text='<%# Eval("Column") %>' /> |
| </ItemTemplate> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadComboBox> |
| $addHandler(window, 'resize', resize); |
I have two series and two Y axes, each with very different scales. I would like the first series to draw on the YAxis1 scale size and the second on the YAxis2 scale.
If I choose DataYColumn2 for the second series, that series disappears. If I just enter DataYColumn for the second series, both draw according to the YAxis1 scale, and I end up with a very tiny line and a very big line.
Any suggestions?
Thanks
<series>
<telerik:ChartSeries DataYColumn="Series1" Name="Series1" Type="Line" >
<Appearance>
<LabelAppearance Visible="False"></LabelAppearance>
</Appearance>
</telerik:ChartSeries>
<telerik:ChartSeries DataYColumn2="Series2" Name="Series2" Type="Line">
<Appearance>
<LabelAppearance Visible="False"></LabelAppearance>
</Appearance>
</telerik:ChartSeries>
</series>
| <radC:RadComboBox ID="ddlSecState" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" Skin="Vista" |
| Height="200px" DropDownWidth="200px" HighlightTemplatedItems="True" Width="50px" |
| DataSourceID="sdsSecState" DataTextField="state_code" DataValueField="state_code" |
| MarkFirstMatch="True" EnableTheming="True" Enabled="false"> |
| <ItemTemplate> |
| <table style="width: 190px; text-align: left"> |
| <tr> |
| <td style="width: 25px;"> |
| <%#DataBinder.Eval(Container.DataItem, "state_code")%> |
| </td> |
| <td style="width: 170px;"> |
| <%#DataBinder.Eval(Container.DataItem, "state_descr")%> |
| </td> |
| </tr> |
| </table> |
| </ItemTemplate> |
| </radC:RadComboBox> |
| and |
| <radC:RadComboBox ID="ddlSecCountry" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" Skin="Vista" |
| Height="200px" DropDownWidth="200px" HighlightTemplatedItems="true" Width="200px" |
| AutoPostBack="true" DataSourceID="sdsCountryList" DataTextField="country_name" |
| DataValueField="country_list_id" HideCombo="false" AllowCustomText="false" MarkFirstMatch="true" |
| SelectOnTab="false" ShowDropDownOnTextboxClick="false"> |
| <ItemTemplate> |
| <table style="width: 190px; text-align: left"> |
| <tr> |
| <td style="width: 100%;"> |
| <%#DataBinder.Eval(Container.DataItem, "country_name")%> |
| </td> |
| </tr> |
| </table> |
| </ItemTemplate> |
| </radC:RadComboBox> |
