customization

ZedGraph smoothly move Y2Axis with chart line

妖精的绣舞 提交于 2019-12-02 04:27:07
问题 In following my question "ZedGraph custom graph" I have chart with every second inserting of datas, now I have other questions: How to smoothly move down Y2Axis (DateTime type) with a chart line and show in chart always only last 30 minutes? How to format Y2Axis labels "HH:mm" to get 10:05, 10:10, 10:15, ..., 10:30? Thanks for help! UPD1 : Thanks kmp! I try your code - its good, but with issue: when I started I see this: When after few minutes I see this picture: I have a "compression" of

May I customize 'edit custom object records' page layout on SalesForce?

青春壹個敷衍的年華 提交于 2019-12-02 04:01:45
For example, to create or edit an object, when I want to add or change some value to one specific field, I need to refer another website to retrieve some info.In this way, may I add one button or link on the edit page? The help link of SalesForce is here: https://help.salesforce.com/apex/htviewhelpdoc?id=co_edit.htm&language=en_US Thanks. Custom buttons and links don't display on new/edit page layouts so even if you'd make one, it will be visible only on detail view. Not too invasive option would be to create a URL or text fied, set it's default value to your link, make sure it's displayed on

customizing a drawable for a range of APIs Android

社会主义新天地 提交于 2019-12-02 02:16:34
I'd like to customize one drawable e.g. /drawable/image.png only for APis 19 to 21. For later APIs (after 22 incl. I'd like a drawable to be different). Do I need to create directories drawable-v19, drawable-v20, drawable-v21, drawable-v22 (for the others?) ? It's a bit unclear to me how it works... You should only need to create directories for the versions that set a different resource. So your resources directory would look something like: res/ drawable/ --> SDK version below 19 image.png drawable-v19/ --> SDK version between 19 and 21 (including both) image.png drawable-v22/ --> SDK

Is there any way to hide the “Object picker” of an EditorGUILayout.ObjectField in Unity Isnpector?

梦想与她 提交于 2019-12-02 02:16:03
问题 I'm just asking if there is any possibility to hide the "Object Picker" (The little knob/menu next to an ObjectField) in a custom Inspector. I have some cases where changes are disabled (DisableGroup) and I would like to also hide the knob while the content can not be changed anyway. Also to make things easier for users I think about making the field higher ( EditorGUIUtility.SingleLineHeight * 2 ) -> the picker gets stretched as well what looks kind of shitty ^^ example: using UnityEditor;

Is there any way to hide the “Object picker” of an EditorGUILayout.ObjectField in Unity Isnpector?

廉价感情. 提交于 2019-12-02 01:53:51
I'm just asking if there is any possibility to hide the "Object Picker" (The little knob/menu next to an ObjectField ) in a custom Inspector. I have some cases where changes are disabled (DisableGroup) and I would like to also hide the knob while the content can not be changed anyway. Also to make things easier for users I think about making the field higher ( EditorGUIUtility.SingleLineHeight * 2 ) -> the picker gets stretched as well what looks kind of shitty ^^ example: using UnityEditor; using UnityEngine; public class Bla : MonoBehaviour { [CustomEditor(typeof(Bla))] public class

ZedGraph smoothly move Y2Axis with chart line

不羁的心 提交于 2019-12-02 01:23:06
In following my question "ZedGraph custom graph" I have chart with every second inserting of datas, now I have other questions: How to smoothly move down Y2Axis (DateTime type) with a chart line and show in chart always only last 30 minutes? How to format Y2Axis labels "HH:mm" to get 10:05, 10:10, 10:15, ..., 10:30? Thanks for help! UPD1 : Thanks kmp! I try your code - its good, but with issue: when I started I see this: When after few minutes I see this picture: I have a "compression" of chart area, but I want statically show always last 30 minute and slowly move down old datas, without of

Customizable / Dynamic SWF generation

我是研究僧i 提交于 2019-12-02 00:33:31
Wondered if anybody knows how customizable Flash swf files are made, where there appears to be a template swf that the user can then input some changes (eg text or image) and receives a newly-compiled swf file with their changes. Some examples: - http://flashfreezer.com/landingconfetti/index.html Constraints: - user receives a single output swf file that can be played with all their changes included. ie there is no reading from an xml file, or using Flashvars. Been trying different things for a few weeks with no luck! There are a number of ways, but generally the most common is to either use a

How to customize dialog window icon using WIX?

此生再无相见时 提交于 2019-12-01 20:18:51
问题 Is it possible to change standard icon (small icon, wich is displayed on the left from title of setup dialog window)? There was used WIX 3.5 for setup's dialogs creation. 回答1: No, Windows Installer doesn't support changing the window icon. 来源: https://stackoverflow.com/questions/6680527/how-to-customize-dialog-window-icon-using-wix

Is it possible to change the way Xcode indents comment blocks?

烈酒焚心 提交于 2019-12-01 17:27:36
问题 By default, Xcode automatically indents multiple lines of code within C-style comment blocks by one space: /* this is a comment block line 1 line 2 */ Is it possible to modify this behaviour? I would prefer to have no indentation within comment blocks. 回答1: This is not a complete answer, but Xcode has code formatting options under the key XCCodeSenseFormattingOptions. You can set the options via command line or by editing the plist: defaults write com.apple.Xcode XCCodeSenseFormattingOptions

Is it possible to change the way Xcode indents comment blocks?

时光怂恿深爱的人放手 提交于 2019-12-01 17:06:31
By default, Xcode automatically indents multiple lines of code within C-style comment blocks by one space: /* this is a comment block line 1 line 2 */ Is it possible to modify this behaviour? I would prefer to have no indentation within comment blocks. This is not a complete answer, but Xcode has code formatting options under the key XCCodeSenseFormattingOptions. You can set the options via command line or by editing the plist: defaults write com.apple.Xcode XCCodeSenseFormattingOptions -dict PreExpressionsSpacing "" PreCommaSpacing " " Unfortunately, I cannot find any setting for the one