I have a chart which shows two series, a column series and a line series. The line series should not always be visible. So I created it like this:
<
Series
>
<
telerik:ColumnSeries
DataFieldY
=
"Emission"
Name
=
"Year"
>
<
Appearance
>
<
Overlay
Gradient
=
"None"
></
Overlay
>
</
Appearance
>
<
LabelsAppearance
DataFormatString
=
"0.00"
>
<
TextStyle
Color
=
"#62BAE4"
FontFamily
=
"Tahoma"
FontSize
=
"10px"
/>
</
LabelsAppearance
>
<
TooltipsAppearance
DataFormatString
=
"0.00"
ClientTemplate="#=kendo.format(\'{0:N2}\', dataItem.Emission)# ton co<sub>2</
sub
>" />
</
telerik:ColumnSeries
>
<
telerik:LineSeries
DataFieldY
=
"AbsoluteGoalEmission"
Name
=
"Goal"
Visible
=
"false"
>
<
Appearance
>
<
Overlay
Gradient
=
"None"
></
Overlay
>
</
Appearance
>
<
Appearance
FillStyle-BackgroundColor
=
"Green"
/>
<
LabelsAppearance
DataFormatString
=
"0.00"
Position
=
"Below"
Visible
=
"false"
>
<
TextStyle
Color
=
"Green"
FontFamily
=
"Tahoma"
FontSize
=
"10px"
/>
</
LabelsAppearance
>
</
telerik:LineSeries
>
</
Series
>
Note how both the lineseries and the labelsappearance are set to Visible="false"
However...... this doesn't hide the label under the x-axis at all (the line series itself is nicely invisible), all it does is make the label grey as if disabled.
I need it to do what it implies: completely hide the label.
What am i missing?
Hi,
I have radgrid, with inline editing. Problem is that the edit field is not set to 80%. see image in attachment.
Below is the setting of the GridBoundColumn :
<
telerik:GridBoundColumn
DataField
=
"Description"
HeaderStyle-Width
=
"50%"
ItemStyle-Width
=
"80%"
FilterControlWidth
=
"80%"
HeaderText
=
"Description"
SortExpression
=
"Description"
UniqueName
=
"Description"
ShowFilterIcon
=
"false"
CurrentFilterFunction
=
"Contains"
AutoPostBackOnFilter
=
"true"
>
<
ColumnValidationSettings
EnableRequiredFieldValidation
=
"true"
>
<
RequiredFieldValidator
Text="<img
src
=
'/CMIT/Images/Warning.gif'
border
=
'0'
>" Display="Dynamic" ToolTip="Description is required." ErrorMessage="-Description is required." ></
RequiredFieldValidator
>
</
ColumnValidationSettings
>
</
telerik:GridBoundColumn
>
How can I make the edit column wider?
Kind regard
Suzy
Is there anything wrong with this scenario? (For a change this only seems to happen in Chrome, both from the server and when run in Visual Studio. IE and Firefox don't have this problem.)
This is a Dot Net 4.0 C# web app. I have a Master page with a RadAjaxPanel. The panel contains an asp:Repeater which functions as a menu at the top of the page. The repeater contains and item template using an asp:LinkButton. The link buttons all fire a single event handler.
In the page using this master page I have another RadAjaxPanel. This contains an assortment of RadComboBoxes and one RadMenu, just added.
If I change the setting of any of the RadComboBoxes or the RadMenu (if any SelectedIndexChanged event fires) the repeater link buttons are disabled. The click event does not fire. (Sometimes. It seems to be intermittent.) If I refresh the page the links work again.
Suggestions?
Hello,
I am currently exporting my grid using the grid.MasterTableView.ExportToExcel() method. I am looking to format the outputted excel spreadsheet. I have read that this is possible using HTML/CSS-based formatting, but I would prefer not to change my current implementation of export. Would someone be able to provide an up-to-date example on how to format the excel export when using ExportToExcel()?
Thanks,
Matt
Dear Supporters !
Have a nice day.
Currently, I have using RadControl for ASP.NET to develop any systems.
I have used RadAsyncUpload control in RadGrid. No problems.
However, when RadAsyncUpload control in RadGrid, it it duplicated into 2 controls that the same in EditMode (Insert and Upload mode).
+ The first control: after select files, these files are not displayed. (I think this no right)
+ The second control: it is OK.
More defails about designer screen and actual problem screen is stored in attachment files.
Thanks in advanced !
tienit
HI Telerik
I have several large controls showing HTML data on a page. Problem is that html in one control is affecting other controls.
Is there any control that I can use to keep the HTML isolated for each control, so that it doesn't affect the other controls at all..
Thanks in advance.
I have a control which is a grid, and has child controls of 2 tabs (which one control is a view, the other a grid).
If I change selected rows on the parent, the view refreshes fine by me calling child1.DataBind(). If I try child2.DataBind() the even isn't called. Why is that working for the view and not the grid?